Skip to content

Commit

Permalink
no longer using flutter_workflow, files cannot be shared between jobs…
Browse files Browse the repository at this point in the history
…, add golden failure upload
gmeral committed Nov 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent f723448 commit cde0dca
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -12,18 +12,27 @@ concurrency:
cancel-in-progress: true

jobs:
quality:
uses: zweidenker/flutter_workflows/.github/workflows/melos_quality_checks.yaml@v2

coverage:
needs: quality
quality:
name: Quality Checks
runs-on: macos-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
- uses: bluefireteam/melos-action@v1
- name: Format, Lint, Publishability
run: melos run lint:all
- name: Run Tests
run: melos run test:coverage:all
- name: Archive Golden failures
if: failure()
uses: actions/upload-artifact@v3
with:
name: Golden failures
retention-days: 2
path: |
**/test/**/failures/**/*.*
- name: Zweidenker Heinzelmen Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1
with:

0 comments on commit cde0dca

Please sign in to comment.