Skip to content

Commit

Permalink
Allow windows builds to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Jul 18, 2024
1 parent 5bf26b7 commit 0cdfcd3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false

steps:
- uses: actions/checkout@v2
Expand All @@ -24,10 +25,13 @@ jobs:
- name: Run cargo command
run: |
cargo run --manifest-path test-crates/bin/Cargo.toml
continue-on-error: ${{ matrix.os == 'windows-latest' }}
- name: Run cargo command (release)
run: |
cargo run --manifest-path test-crates/bin/Cargo.toml --release
continue-on-error: ${{ matrix.os == 'windows-latest' }}
- name: Run cargo command (release with SOPRINTLN=1)
run: |
export SOPRINTLN=1
cargo run --manifest-path test-crates/bin/Cargo.toml --release
continue-on-error: ${{ matrix.os == 'windows-latest' }}

0 comments on commit 0cdfcd3

Please sign in to comment.