Skip to content

Commit ea554fa

Browse files
committed
Disable tests
1 parent 021960b commit ea554fa

File tree

1 file changed

+40
-40
lines changed

1 file changed

+40
-40
lines changed

.github/workflows/platform_web.yaml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -84,52 +84,52 @@ jobs:
8484
run: flutter analyze
8585
working-directory: ${{env.source-directory}}
8686

87-
tests:
88-
name: Unit-tests
89-
# The type of runner that the job will run on
90-
runs-on: ubuntu-latest
91-
92-
env:
93-
source-directory: ./cached_network_image_web
94-
95-
# Steps represent a sequence of tasks that will be executed as part of the job
96-
steps:
97-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
98-
- uses: actions/checkout@v4
99-
100-
# Make sure the stable version of Flutter is available
101-
- name: Set up Flutter
102-
uses: subosito/flutter-action@v2
103-
with:
104-
channel: "stable"
105-
architecture: x64
106-
cache: true
107-
108-
# Download all Flutter packages
109-
- name: Download dependencies
110-
run: flutter pub get
111-
working-directory: ${{env.source-directory}}
112-
113-
# Run all unit-tests with code coverage
114-
- name: Run unit tests
115-
run: flutter test --coverage
116-
working-directory: ${{env.source-directory}}
117-
118-
# Upload code coverage information
119-
# - uses: codecov/codecov-action@v4
120-
# env:
121-
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
122-
# with:
123-
# files: ${{env.source-directory}}/coverage/lcov.info
124-
# name: CachedNetworkImage (App Facing Package)
125-
# fail_ci_if_error: true
87+
# tests:
88+
# name: Unit-tests
89+
# # The type of runner that the job will run on
90+
# runs-on: ubuntu-latest
91+
92+
# env:
93+
# source-directory: ./cached_network_image_web
94+
95+
# # Steps represent a sequence of tasks that will be executed as part of the job
96+
# steps:
97+
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
98+
# - uses: actions/checkout@v4
99+
100+
# # Make sure the stable version of Flutter is available
101+
# - name: Set up Flutter
102+
# uses: subosito/flutter-action@v2
103+
# with:
104+
# channel: "stable"
105+
# architecture: x64
106+
# cache: true
107+
108+
# # Download all Flutter packages
109+
# - name: Download dependencies
110+
# run: flutter pub get
111+
# working-directory: ${{env.source-directory}}
112+
113+
# # Run all unit-tests with code coverage
114+
# - name: Run unit tests
115+
# run: flutter test --coverage
116+
# working-directory: ${{env.source-directory}}
117+
118+
# Upload code coverage information
119+
# - uses: codecov/codecov-action@v4
120+
# env:
121+
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
122+
# with:
123+
# files: ${{env.source-directory}}/coverage/lcov.info
124+
# name: CachedNetworkImage (App Facing Package)
125+
# fail_ci_if_error: true
126126

127127
publish:
128128
if: ${{ github.ref_type == 'tag' }}
129129
name: Publish package
130130
permissions:
131131
id-token: write
132-
needs: [format, analyze, tests]
132+
needs: [format, analyze]
133133
# The type of runner that the job will run on
134134
runs-on: ubuntu-latest
135135

0 commit comments

Comments
 (0)