From ea554fa42ce238d077a27ea01aa1993234785514 Mon Sep 17 00:00:00 2001 From: Martijn van Dijk Date: Thu, 1 Aug 2024 19:46:59 +0200 Subject: [PATCH] Disable tests --- .github/workflows/platform_web.yaml | 80 ++++++++++++++--------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/platform_web.yaml b/.github/workflows/platform_web.yaml index 687c73a8..87dca589 100644 --- a/.github/workflows/platform_web.yaml +++ b/.github/workflows/platform_web.yaml @@ -84,52 +84,52 @@ jobs: run: flutter analyze working-directory: ${{env.source-directory}} - tests: - name: Unit-tests - # The type of runner that the job will run on - runs-on: ubuntu-latest - - env: - source-directory: ./cached_network_image_web - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 - - # Make sure the stable version of Flutter is available - - name: Set up Flutter - uses: subosito/flutter-action@v2 - with: - channel: "stable" - architecture: x64 - cache: true - - # Download all Flutter packages - - name: Download dependencies - run: flutter pub get - working-directory: ${{env.source-directory}} - - # Run all unit-tests with code coverage - - name: Run unit tests - run: flutter test --coverage - working-directory: ${{env.source-directory}} - - # Upload code coverage information - # - uses: codecov/codecov-action@v4 - # env: - # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - # with: - # files: ${{env.source-directory}}/coverage/lcov.info - # name: CachedNetworkImage (App Facing Package) - # fail_ci_if_error: true + # tests: + # name: Unit-tests + # # The type of runner that the job will run on + # runs-on: ubuntu-latest + + # env: + # source-directory: ./cached_network_image_web + + # # Steps represent a sequence of tasks that will be executed as part of the job + # steps: + # # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + # - uses: actions/checkout@v4 + + # # Make sure the stable version of Flutter is available + # - name: Set up Flutter + # uses: subosito/flutter-action@v2 + # with: + # channel: "stable" + # architecture: x64 + # cache: true + + # # Download all Flutter packages + # - name: Download dependencies + # run: flutter pub get + # working-directory: ${{env.source-directory}} + + # # Run all unit-tests with code coverage + # - name: Run unit tests + # run: flutter test --coverage + # working-directory: ${{env.source-directory}} + + # Upload code coverage information + # - uses: codecov/codecov-action@v4 + # env: + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + # with: + # files: ${{env.source-directory}}/coverage/lcov.info + # name: CachedNetworkImage (App Facing Package) + # fail_ci_if_error: true publish: if: ${{ github.ref_type == 'tag' }} name: Publish package permissions: id-token: write - needs: [format, analyze, tests] + needs: [format, analyze] # The type of runner that the job will run on runs-on: ubuntu-latest