Skip to content

Commit

Permalink
ci: fix missing components
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed Dec 11, 2023
1 parent 7dd753d commit 4471ae9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install Nightly Toolchain
uses: dtolnay/rust-toolchain@nightly

- name: Cargo Deny
uses: EmbarkStudios/cargo-deny-action@v1

- name: Clippy
run: cargo clippy --all-targets --all-features

- name: Install Nightly Toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt

- name: Format
run: cargo +nightly fmt --check

0 comments on commit 4471ae9

Please sign in to comment.