Skip to content

Commit

Permalink
Merge pull request #101 from JKRhb/fix-ci
Browse files Browse the repository at this point in the history
ci: downgrade Dart version under Windows to 3.3.0
  • Loading branch information
JKRhb authored Jun 30, 2024
2 parents cd6fbc8 + 7599f3f commit fbd1690
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,27 @@ on:

jobs:
build:
name: build (${{ matrix.os }})
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
# TODO: Remove 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 fbd1690

Please sign in to comment.