Skip to content

Add another test and update test job #2

Add another test and update test job

Add another test and update test job #2

Workflow file for this run

on:
push:
paths-ignore:
- '*.md'
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
permissions:
pull-requests: read
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
name: Build
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Environment
uses: ./.github/actions/setup_build
- name: Pre Build Tasks
uses: ./.github/actions/pre_build
- name: Run Tests
run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info