Skip to content

Commit

Permalink
Update: coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AmosHuKe authored Dec 4, 2023
1 parent 38a6de9 commit 4cc9b43
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: coverage
run-name: "Coverage"
name: "test coverage"
run-name: "Test Coverage"

on:
workflow_dispatch:
push:
branches:
- main
Expand All @@ -16,7 +17,19 @@ on:
- "example/**"

jobs:
test:
test_minimum_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.0'
- name: Prepare dependencies
run: flutter pub get
- name: Coverage
run: flutter test --coverage
test_latest_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 4cc9b43

Please sign in to comment.