Skip to content

Commit

Permalink
github: pin to specific rust toolchain version
Browse files Browse the repository at this point in the history
Stable will upgrade our version, which means that CI can spontaneously
break.
  • Loading branch information
carlaKC committed May 15, 2024
1 parent 5838d4a commit b143e91
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,11 @@ jobs:
- name: Install protoc
run: sudo apt install -y protobuf-compiler
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.76.0
- name: Install Clippy
run: rustup component add clippy
- name: Install Rustfmt
run: rustup component add rustfmt
- name: run check
run: make check

0 comments on commit b143e91

Please sign in to comment.