Skip to content

chore: Check devtools_options.yaml into Git #132

chore: Check devtools_options.yaml into Git

chore: Check devtools_options.yaml into Git #132

Workflow file for this run

name: Run tests
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
schedule:
- cron: "0 0 * * 0" # Run on Sundays
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: dart format --set-exit-if-changed .
- run: dart run build_runner build # Generate mocks
- run: flutter analyze .
- run: flutter test