Skip to content

Commit

Permalink
Uses correct action
Browse files Browse the repository at this point in the history
  • Loading branch information
rk0cc committed Jan 9, 2024
1 parent 32da757 commit c33e9a3
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/builder_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,23 @@ jobs:
env:
working-directory: './builder'
runs-on: ubuntu-latest
strategy:
matrix:
sdkver:
- '3.x'
- '3.0.x'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dart
uses: dart-lang/setup-dart@v1
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: ${{ matrix.sdkver }}
- name: Get dependencies
working-directory: ${{ env.working-directory }}
run: dart pub get
run: flutter pub get
- name: Perform test
working-directory: ${{ env.working-directory }}
run: dart test
run: flutter test .

0 comments on commit c33e9a3

Please sign in to comment.