Skip to content

Commit

Permalink
Add 2.10 tag, Change dev to experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
Liklainy committed Dec 14, 2020
1 parent 9fb5714 commit 4fb5954
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,31 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest

continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
tag: [latest, dev]
tag: [2.10, latest]
experimental: [false]
include:
- tag: dev
experimental: true

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

steps:
- uses: actions/checkout@v2

- name: Upgrade dependencies
if: ${{ matrix.experimental }}
run: dart pub upgrade

- name: Install dependencies
run: pub get
if: ${{ !matrix.experimental }}
run: dart pub get

- name: Check Stage formatting
run: pub run bin/check_formatting.dart
run: dart run bin/check_formatting.dart

- name: Run tests
run: pub run test
run: dart test

0 comments on commit 4fb5954

Please sign in to comment.