Skip to content

chore(deps): update codecov/codecov-action action to v4.5.0 #31

chore(deps): update codecov/codecov-action action to v4.5.0

chore(deps): update codecov/codecov-action action to v4.5.0 #31

Workflow file for this run

name: test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --set-exit-if-changed --output=none .
- name: Analyze project source
run: dart analyze
- name: Run tests
run: dart test --coverage coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}