Skip to content

Test format action #427

Test format action

Test format action #427

Workflow file for this run

name: Run Tests
on:
pull_request:
paths:
- '.github/workflows/test.yml'
- 'bin/*.dart'
- 'exercises/**/*.dart'
- 'exercises/**/analysis_options.yaml'
- 'exercises/**/pubspec.yaml'
- 'lib/*.dart'
- 'lib/src/*.dart'
- 'test/*.dart'
- 'analysis_options.yaml'
- 'pubspec.*'
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tag: ['3.2']
container:
image: dart:${{ matrix.tag }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test