Skip to content

Merge pull request #26 from futabooo/tagpr-from-0.3.3 #70

Merge pull request #26 from futabooo/tagpr-from-0.3.3

Merge pull request #26 from futabooo/tagpr-from-0.3.3 #70

Workflow file for this run

name: Dart CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 # v1.7.0
with:
sdk: '3.6'
- name: Install dependencies
run: dart pub get
- name: Analyze project source (ignore example)
run: dart analyze lib
- name: Run tests
run: dart test