File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 44
44
45
45
find-e2e-tests :
46
46
needs : check-labels
47
- if : always() && needs.check-labels.outputs.run-cli-tests == ' true'
47
+ if : needs.check-labels.outputs.run-cli-tests == true
48
48
runs-on : ubuntu-latest
49
49
outputs :
50
50
test-files : ${{ steps.get-tests.outputs.test-files }}
70
70
pull-docker-image :
71
71
needs : check-labels
72
72
runs-on : ubuntu-latest
73
- if : always() && needs.check-labels.outputs.run-cli-tests == ' true'
73
+ if : needs.check-labels.outputs.run-cli-tests == true
74
74
steps :
75
75
- name : Log in to GitHub Container Registry
76
76
run : echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
93
93
- find-e2e-tests
94
94
- pull-docker-image
95
95
96
- if : always() && needs.check-labels.outputs.run-cli-tests == ' true'
96
+ if : needs.check-labels.outputs.run-cli-tests == true
97
97
runs-on : ubuntu-latest
98
98
strategy :
99
99
fail-fast : false
@@ -154,7 +154,7 @@ jobs:
154
154
source ${{ github.workspace }}/venv/bin/activate
155
155
git checkout staging
156
156
uv run --active pip install --upgrade pip
157
- uv run --acrive pip install pytest
157
+ uv run --active pip install pytest
158
158
uv run --active pip install maturin
159
159
160
160
- name : Install uv dependencies
@@ -195,7 +195,7 @@ jobs:
195
195
run-unit-test :
196
196
needs :
197
197
- check-labels
198
- if : always() && needs.check-labels.outputs.run-cli-tests == ' true'
198
+ if : needs.check-labels.outputs.run-cli-tests == true
199
199
runs-on : ubuntu-latest
200
200
steps :
201
201
- name : Check-out repository
Original file line number Diff line number Diff line change 43
43
44
44
find-e2e-tests :
45
45
needs : check-labels
46
- if : always() && needs.check-labels.outputs.run-sdk-tests == ' true'
46
+ if : always() && needs.check-labels.outputs.run-sdk-tests == true
47
47
runs-on : ubuntu-latest
48
48
outputs :
49
49
test-files : ${{ steps.get-tests.outputs.test-files }}
69
69
pull-docker-image :
70
70
needs : check-labels
71
71
runs-on : ubuntu-latest
72
- if : always() && needs.check-labels.outputs.run-sdk-tests == ' true'
72
+ if : needs.check-labels.outputs.run-sdk-tests == true
73
73
steps :
74
74
- name : Log in to GitHub Container Registry
75
75
run : echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
92
92
- find-e2e-tests
93
93
- pull-docker-image
94
94
95
- if : always() && needs.check-labels.outputs.run-sdk-tests == ' true'
95
+ if : needs.check-labels.outputs.run-sdk-tests == true
96
96
runs-on : ubuntu-latest
97
97
strategy :
98
98
fail-fast : false
@@ -194,7 +194,7 @@ jobs:
194
194
run-integration-and-unit-test :
195
195
needs :
196
196
- check-labels
197
- if : always() && needs.check-labels.outputs.run-sdk-tests == ' true'
197
+ if : needs.check-labels.outputs.run-sdk-tests == true
198
198
runs-on : ubuntu-latest
199
199
steps :
200
200
- name : Check-out repository
You can’t perform that action at this time.
0 commit comments