Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit d6fd3b8

Browse files
committed
Add github workflow for toolchain consistency check
Implements #308
1 parent c2db54e commit d6fd3b8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/style.yml

+9
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,12 @@ jobs:
3838
if rustup component add clippy rustc-dev; then
3939
cargo clippy --all
4040
fi
41+
42+
version_consistency_check:
43+
name: Toolchain version consistency check
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v3
47+
- name: Toolchain version consistency check
48+
run: scripts/toolchain-version -c
49+

0 commit comments

Comments
 (0)