Skip to content

Commit

Permalink
Fixing syntax in Rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Tucker committed Sep 16, 2021
1 parent fef641a commit 147056b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,16 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Rust 1.46.0
uses: actions-rs/toolchain@v1
with:
toolchain: 1.46.0
override: true
components: rustfmt, clippy
- name: Run fmt
uses: actions-rs/toolchain@v1
with:
toolchain: 1.46.0
override: true
components: rustfmt, clippy
- name: FMT
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all --all-features -- -D warnings
- name: Build
run: cargo build --all --all-features --verbose
- name: Run tests
run: cargo test --all --all-features

0 comments on commit 147056b

Please sign in to comment.