Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix windows 1.75 workflow #1425

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ jobs:
- name: Install NASM
uses: ilammy/[email protected]

- name: Install stable toolchain for cargo-hack
run: curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal --default-toolchain stable -y
if: ${{ matrix.toolchain != 'stable' }}

- name: Install toolchain
run: curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal --default-toolchain ${{ matrix.toolchain }} -y

Expand All @@ -196,7 +200,7 @@ jobs:
- run: cargo build --frozen --workspace --examples
- run: cargo test --workspace

- run: cargo install cargo-hack
- run: cargo +stable install cargo-hack
- run: cargo hack --workspace --remove-dev-deps
- run: cargo check --no-default-features
- run: cargo check
Expand Down
Loading