Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

Fix all tests

Fix all tests #727

Workflow file for this run

name: CI
on: [push]
jobs:
lint-and-test:
name: Lint and test package on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: "3.3.8"
channel: 'stable'
- run: flutter pub get
name: Get dependencies
- run: flutter analyze
name: Linter
- run: flutter test --coverage
name: Tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1