Skip to content

more jekyll (#77)

more jekyll (#77) #82

Workflow file for this run

name: Buid
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Run tests ${{matrix.sdk}} on ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: ['stable']
runs-on: ${{ matrix.os }}
steps:
- uses: dart-lang/[email protected]
with:
sdk: ${{ matrix.sdk }}
- uses: actions/[email protected]
- run: dart --version
- run: dart pub get
# Verify the library re-generates.
- run: dart --enable-asserts tool/generate_analysis.dart
# Verify that the libraries are error free.
- run: dart analyze --fatal-infos .
# Run the tests.
- run: dart test
# Run a basic smoke test.
- run: dart tool/analysis_tester.dart
- name: "check for uncommitted changes"
run: git diff --exit-code --stat
shell: bash