Skip to content

chore(deps): bump actions/checkout from 2 to 4 #6

chore(deps): bump actions/checkout from 2 to 4

chore(deps): bump actions/checkout from 2 to 4 #6

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
packages: [spry]
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: Install dependencies
run: dart pub get
working-directory: packages/${{ matrix.packages }}
- name: Analyze
run: dart analyze
working-directory: packages/${{ matrix.packages }}
- name: Test
run: dart test
working-directory: packages/${{ matrix.packages }}