Skip to content

chore(deps): update dependency dart to v3 #60

chore(deps): update dependency dart to v3

chore(deps): update dependency dart to v3 #60

Workflow file for this run

name: Test Package
on:
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
lint_and_test:
name: Linting and Testing
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Flutter Environment
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install Dependencies
run: dart pub get
- name: Analyze Project
run: dart analyze
- name: Verify Format
run: dart format --output=none --set-exit-if-changed .
- name: Run tests
run: flutter test -r github