Skip to content

Try logging in before publishing #26

Try logging in before publishing

Try logging in before publishing #26

Workflow file for this run

# (c) Copyright 2023 Hewlett Packard Enterprise Development LP
name: Rust Checks
on:
pull_request:
jobs:
build:
name: Rust Checks
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Rust Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test --verbose