Skip to content

Commit b143e91

Browse files
committed
github: pin to specific rust toolchain version
Stable will upgrade our version, which means that CI can spontaneously break.
1 parent 5838d4a commit b143e91

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
- name: Install protoc
1414
run: sudo apt install -y protobuf-compiler
1515
- uses: actions/checkout@v4
16-
- uses: dtolnay/rust-toolchain@stable
16+
- uses: dtolnay/rust-toolchain@1.76.0
17+
- name: Install Clippy
18+
run: rustup component add clippy
19+
- name: Install Rustfmt
20+
run: rustup component add rustfmt
1721
- name: run check
1822
run: make check
1923

0 commit comments

Comments
 (0)