Skip to content

Commit

Permalink
chore: revert back adding component (#3633)
Browse files Browse the repository at this point in the history
Further cleanup of the CI toolchain
remove clippy and fmt from toolchain and add back to only place necessary in CI
  • Loading branch information
sehz committed Oct 30, 2023
1 parent be3940f commit d43ff3c
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 d43ff3c

Please sign in to comment.