Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Merge pull request #18 from Flyclops/issues/17 #69

Merge pull request #18 from Flyclops/issues/17

Merge pull request #18 from Flyclops/issues/17 #69

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2.16.0
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
working-directory: ./lib
run: flutter analyze
- name: Run tests
run: flutter test --coverage
- name: Send coverage to Coveralls
uses: coverallsapp/github-action@v2