Skip to content

Commit

Permalink
ci: tag unit tests on windows as experimental to prevent blocking the… (
Browse files Browse the repository at this point in the history
#706)

## Proposed change


https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#handling-failures

## Related issues

- 🐛 Fixes #(issue)
- 🚀 Feature #(issue)

<!-- Please make sure to follow the contributing guidelines on
https://github.com/amadeus-digital/Otter/blob/main/CONTRIBUTING.md -->
  • Loading branch information
fpaul-1A authored Aug 30, 2023
2 parents 3142955 + 52a660e commit 744994f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
os: [ubuntu-latest]
experimental: [false]
include:
- os: windows-latest
experimental: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
steps:
Expand Down

0 comments on commit 744994f

Please sign in to comment.