From 200f006a3478f14698e01fb010b2617dbb11ca41 Mon Sep 17 00:00:00 2001 From: Roscoe Rubin-Rottenberg Date: Fri, 24 Jul 2026 01:55:12 -0400 Subject: [PATCH] ci: run tests without coverage artifacts --- .github/workflows/test.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a43f5a..b689380 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,6 @@ concurrency: permissions: contents: read - pull-requests: write jobs: test: @@ -42,33 +41,5 @@ jobs: - name: Run tests run: >- flutter test - --coverage --test-randomize-ordering-seed=random --reporter=expanded - --file-reporter=json:test-results.json - - - name: Summarize coverage - if: always() && hashFiles('coverage/lcov.info') != '' - run: >- - dart run tool/coverage_summary.dart - coverage/lcov.info - --enforce-critical - >> "$GITHUB_STEP_SUMMARY" - - - name: Upload test results - if: always() - uses: actions/upload-artifact@v4 - with: - name: test-results - path: test-results.json - if-no-files-found: error - retention-days: 7 - - - name: Upload coverage - if: always() - uses: actions/upload-artifact@v4 - with: - name: coverage - path: coverage/lcov.info - if-no-files-found: error - retention-days: 7 -- 2.51.2