Skip to content

Commit

Permalink
Try to work around toolchain version parsing issue
Browse files Browse the repository at this point in the history
1.70.0 should be the same as 1.70.
  • Loading branch information
Thomasdezeeuw committed Jun 14, 2024
1 parent 84c0e5b commit a3e793b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.70
# NOTE: full version (including .0) to work around
# <https://github.com/dtolnay/rust-toolchain/issues/112>.
toolchain: 1.70.0
- name: Check
# We only run check allowing us to use newer features in tests.
run: cargo check --all-features
Expand Down

0 comments on commit a3e793b

Please sign in to comment.