Skip to content

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 #458

build(deps): bump actions/checkout from 6.0.1 to 6.0.2

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 #458

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-24.04
strategy:
fail-fast: false
matrix:
tag: ['3.2']
container:
image: dart:${{ matrix.tag }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test