From 25d718ea8caf1381caac23c7f4ba005e66ea18ad Mon Sep 17 00:00:00 2001 From: Anton Maminov Date: Wed, 19 Apr 2023 13:04:56 +0300 Subject: [PATCH] allowed-failure for windows ci --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97e3069..54a01c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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