Skip to content

Commit

Permalink
ci/cd V
Browse files Browse the repository at this point in the history
  • Loading branch information
lindeer committed Jun 25, 2024
1 parent e5193f9 commit ae6f4a4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ on:
pull_request:

jobs:
test:
build:
strategy:
matrix:
os: [windows, ubuntu, macos]
os: [ubuntu, macos, windows]
arch: [x64, aarch64]
runs-on: ${{ matrix.os }}
sdk: [3.3.0]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-action@v2
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
with:
sdk-root: ${{ runner.tool_cache }}/dart
sdk-version: 3.3.0
sdk: ${{ matrix.sdk }}
- run: dart pub get
- run: dart analyze
- run: dart --enable-experiment=native-assets test
Expand Down

0 comments on commit ae6f4a4

Please sign in to comment.