Skip to content

Solidart v3: Refactor v3 core API and align ecosystem packages #1020

Solidart v3: Refactor v3 core API and align ecosystem packages

Solidart v3: Refactor v3 core API and align ecosystem packages #1020

Workflow file for this run

name: Build
on:
pull_request:
paths-ignore:
- "**.md"
push:
branches:
- main
- dev
paths-ignore:
- "**.md"
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
- run: flutter pub get
- run: flutter analyze packages
- run: flutter test packages --coverage -r github --fail-fast
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info