Skip to content

Commit

Permalink
ci: add workaround for failing CI on Windows (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb authored Jul 3, 2024
1 parent 318f5d6 commit d6b67d6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,24 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# TODO: Revert once https://github.com/dart-lang/sdk/issues/55745
# has been resolved

sdk: [stable, 3.3.0]
exclude:
- os: macos-latest
sdk: 3.3.0
- os: ubuntu-latest
sdk: 3.3.0
- os: windows-latest
sdk: stable
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}

- name: Install dependencies
run: dart pub get
Expand Down

0 comments on commit d6b67d6

Please sign in to comment.