Skip to content

Commit 4fb5954

Browse files
committed
Add 2.10 tag, Change dev to experimental
1 parent 9fb5714 commit 4fb5954

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,31 @@ on: [push, pull_request]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8-
8+
continue-on-error: ${{ matrix.experimental }}
99
strategy:
10-
fail-fast: false
1110
matrix:
12-
tag: [latest, dev]
11+
tag: [2.10, latest]
12+
experimental: [false]
13+
include:
14+
- tag: dev
15+
experimental: true
1316

1417
container:
1518
image: google/dart:${{ matrix.tag }}
1619

1720
steps:
1821
- uses: actions/checkout@v2
1922

23+
- name: Upgrade dependencies
24+
if: ${{ matrix.experimental }}
25+
run: dart pub upgrade
26+
2027
- name: Install dependencies
21-
run: pub get
28+
if: ${{ !matrix.experimental }}
29+
run: dart pub get
2230

2331
- name: Check Stage formatting
24-
run: pub run bin/check_formatting.dart
32+
run: dart run bin/check_formatting.dart
2533

2634
- name: Run tests
27-
run: pub run test
35+
run: dart test

0 commit comments

Comments
 (0)