Skip to content

Commit

Permalink
Add names to CI steps
Browse files Browse the repository at this point in the history
  • Loading branch information
rgwood committed May 16, 2022
1 parent e088525 commit ef7003a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,23 @@ jobs:
override: true
components: rustfmt, clippy

- uses: actions-rs/cargo@v1
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- uses: actions-rs/cargo@v1
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
- uses: actions-rs/cargo@v1
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings

0 comments on commit ef7003a

Please sign in to comment.