Skip to content

0.1.2

0.1.2 #26

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Install lcov
run: sudo apt-get install -y lcov
- name: Checkout the code
uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
- name: Get dependencies
run: flutter pub get
- name: Static code analysis
run: flutter analyze --no-pub
- name: Check code formatting
run: dart format . --set-exit-if-changed
- name: Unit tests
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}