From 9108b46379bdc37e2b6e77c1d5e9c2112a41ea52 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 21 Jun 2024 15:39:25 -0700 Subject: [PATCH] Don't collect coverage on Windows it's been failing forever --- .github/workflows/cli_config.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/cli_config.yml b/.github/workflows/cli_config.yml index 41a7a846e..10ee7300b 100644 --- a/.github/workflows/cli_config.yml +++ b/.github/workflows/cli_config.yml @@ -78,17 +78,3 @@ jobs: - run: dart test if: ${{matrix.run-tests}} - - - name: Install coverage - run: dart pub global activate coverage - if: ${{ matrix.sdk == 'stable' }} - - name: Collect coverage - run: dart pub global run coverage:test_with_coverage - if: ${{ matrix.sdk == 'stable' }} - - name: Upload coverage - uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - flag-name: cli_config_windows - path-to-lcov: ./pkgs/cli_config/coverage/lcov.info - if: ${{ matrix.sdk == 'stable' }}