Skip to content

Commit

Permalink
allowed-failure for windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mamantoha committed Apr 19, 2023
1 parent e9a309c commit 1927c1a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
fail-fast: false
matrix:
include:
- { os: ubuntu-latest, crystal: latest }
- { os: ubuntu-latest, crystal: nightly }
- { os: macos-latest }
- { os: windows-latest }
- { os: ubuntu-latest, crystal: latest, allowed-failure: false }
- { os: ubuntu-latest, crystal: nightly, allowed-failure: false }
- { os: macos-latest, allowed-failure: false }
- { os: windows-latest, allowed-failure: true }
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -36,6 +36,7 @@ jobs:
run: |
crystal spec
crystal spec --release --no-debug
continue-on-error: ${{ matrix.allowed-failure }}

- name: Check formatting
run: crystal tool format --check
Expand Down

0 comments on commit 1927c1a

Please sign in to comment.