Skip to content

Stupid

Stupid #36

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.1'
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Format code
run: dart format .
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test --coverage