Update dart.yml: Add matrix for 'analyze' job (#389)

This commit is contained in:
Michael Thomsen 2020-11-03 23:08:06 +01:00 committed by GitHub
parent 63f551b14b
commit 0c4d83ab7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -12,12 +12,14 @@ jobs:
# against Dart stable and dev.
analyze:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [stable, dev]
steps:
- uses: actions/checkout@v2
- uses: cedx/setup-dart@v2
with:
release-channel: stable
release-channel: ${{ matrix.sdk }}
- name: Report version
run: dart --version
- name: Install dependencies