blob: 6a96ed7cc3455a75df23320399f6db2c026cb034 [file] [log] [blame]
name: Dart CI
on:
# Run CI on pushes to the main branch, and on PRs against main.
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: '0 0 * * 0'
env:
PUB_ENVIRONMENT: bot.github
_PUB_TEST_SNAPSHOT: ${{ github.workspace }}/.dart_tool/pub.dart.snapshot.dart2
_TESTS_FILE: .dart_tool/test_files
jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart stable and dev.
analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [dev]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3
with:
sdk: ${{ matrix.sdk }}
- id: install
name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
if: always() && steps.install.outcome == 'success'
- name: Analyze code
run: dart analyze --fatal-infos
if: always() && steps.install.outcome == 'success'
# Run tests on a matrix consisting of three dimensions:
# 1. OS: mac, windows, linux
# 2. release channel: dev
# 3. shard: 0, 1, 2, 3, 4, 5, 6
test:
needs: analyze
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [dev]
shard: [0, 1, 2, 3, 4, 5, 6]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: dart pub get
- name: Build snapshot
run: dart --snapshot=${{ env._PUB_TEST_SNAPSHOT }} bin/pub.dart
- name: Run tests
run: dart test --preset ci --total-shards=7 --shard-index=${{ matrix.shard }}