@@ -84,52 +84,52 @@ jobs:
84
84
run : flutter analyze
85
85
working-directory : ${{env.source-directory}}
86
86
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
126
126
127
127
publish :
128
128
if : ${{ github.ref_type == 'tag' }}
129
129
name : Publish package
130
130
permissions :
131
131
id-token : write
132
- needs : [format, analyze, tests ]
132
+ needs : [format, analyze]
133
133
# The type of runner that the job will run on
134
134
runs-on : ubuntu-latest
135
135
0 commit comments