Skip to content

Commit 044dd74

Browse files
committed
fix MSRV check on Windows
turns out that Powershell is used by default there, and variable substitutions are different there. What's worse is that it doesn't seem to fail if something doesn't work as one would expect.
1 parent 4ca7094 commit 044dd74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/msrv.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
- uses: actions/checkout@v4
2626
- uses: extractions/setup-just@v2
2727
- run: |
28-
rustup toolchain install $rust_version --profile minimal --no-self-update
29-
rustup default $rust_version
28+
rustup toolchain install {{ env.rust_version }} --profile minimal --no-self-update
29+
rustup default {{ env.rust_version }}
3030
- run: just ci-check-msrv

0 commit comments

Comments
 (0)