Skip to content

chore(release): publish 6.0.0-rc.2 #17

chore(release): publish 6.0.0-rc.2

chore(release): publish 6.0.0-rc.2 #17

Workflow file for this run

name: Flutter Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flutter-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
cache-key: flutter-${{ hashFiles('**/pubspec.lock') }}
cache-path: ${{ runner.tool_cache }}/flutter
- name: Show Flutter version
run: flutter --version
- name: Get dependencies
run: flutter pub get
- name: Run tests with coverage
run: flutter test --coverage
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/lcov.info
if-no-files-found: warn