Skip to content

Commit

Permalink
revert back adding component
Browse files Browse the repository at this point in the history
  • Loading branch information
sehz committed Oct 30, 2023
1 parent be3940f commit 1e9ccb8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,14 @@ jobs:
key: ${{ matrix.rust-target }}-${{ matrix.check }}
- name: Fmt
if: matrix.check == 'fmt'
run: make check-fmt
run: |
rustup component add rustfmt
make check-fmt
- name: Clippy
if: matrix.check == 'clippy'
run: make check-clippy
run: |
rustup component add clippy
make check-clippy
- name: Doc
if: matrix.check == 'doc'
run: make check-docs
Expand Down
3 changes: 1 addition & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[toolchain]
channel = "1.73.0"
components = [ "rustfmt", "clippy" ]
channel = "1.73.0"

0 comments on commit 1e9ccb8

Please sign in to comment.