Skip to content

chore: update logo #124

chore: update logo

chore: update logo #124

Workflow file for this run

name: Flutter test
on:
pull_request_target:
paths-ignore:
- "**.md"
push:
branches:
- main
- dev
paths-ignore:
- "**.md"
jobs:
build:
name: Flutter test
runs-on: ubuntu-latest
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: subosito/[email protected]
with:
channel: "stable"
cache: true
- name: Install dependencies
run: flutter pub get
- name: Test
working-directory: packages/disco
run: flutter test --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
directory: packages/disco