Skip to content

Commit 0325f8e

Browse files
authored
Merge pull request #7713 from tautschnig/cleanup/no-rust-action
Replace actions-rs/toolchain by direct command
2 parents 8c152bc + 772a1d5 commit 0325f8e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/syntax-checks.yaml

+2-5
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,7 @@ jobs:
5555
- name: Checkout CBMC repository
5656
uses: actions/checkout@v3
5757
- name: Install latest stable Rust toolchain
58-
uses: actions-rs/toolchain@v1
59-
with:
60-
toolchain: stable
61-
override: true
62-
components: rustfmt, clippy
58+
run: |
59+
rustup toolchain install stable --profile minimal --no-self-update -c clippy -c rustfmt
6360
- name: Run `cargo fmt` on top of Rust API project
6461
run: cd src/libcprover-rust; cargo fmt --all -- --check

0 commit comments

Comments
 (0)