Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin CI to latest stable Dart 2.10 & prepare for NNBD #276

Merged
merged 5 commits into from
Dec 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Liklainy marked this conversation as resolved.
Show resolved Hide resolved
matrix:
tag: ['2.10']

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

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: pub get
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