Skip to content

Commit 0b8d663

Browse files
committed
fix bugs + replace true
1 parent 8aefe23 commit 0b8d663

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Diff for: .github/workflows/check-btcli-tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
find-e2e-tests:
4646
needs: check-labels
47-
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
47+
if: needs.check-labels.outputs.run-cli-tests == true
4848
runs-on: ubuntu-latest
4949
outputs:
5050
test-files: ${{ steps.get-tests.outputs.test-files }}
@@ -70,7 +70,7 @@ jobs:
7070
pull-docker-image:
7171
needs: check-labels
7272
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
7474
steps:
7575
- name: Log in to GitHub Container Registry
7676
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
@@ -93,7 +93,7 @@ jobs:
9393
- find-e2e-tests
9494
- pull-docker-image
9595

96-
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
96+
if: needs.check-labels.outputs.run-cli-tests == true
9797
runs-on: ubuntu-latest
9898
strategy:
9999
fail-fast: false
@@ -154,7 +154,7 @@ jobs:
154154
source ${{ github.workspace }}/venv/bin/activate
155155
git checkout staging
156156
uv run --active pip install --upgrade pip
157-
uv run --acrive pip install pytest
157+
uv run --active pip install pytest
158158
uv run --active pip install maturin
159159
160160
- name: Install uv dependencies
@@ -195,7 +195,7 @@ jobs:
195195
run-unit-test:
196196
needs:
197197
- check-labels
198-
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
198+
if: needs.check-labels.outputs.run-cli-tests == true
199199
runs-on: ubuntu-latest
200200
steps:
201201
- name: Check-out repository

Diff for: .github/workflows/check-sdk-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
find-e2e-tests:
4545
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
4747
runs-on: ubuntu-latest
4848
outputs:
4949
test-files: ${{ steps.get-tests.outputs.test-files }}
@@ -69,7 +69,7 @@ jobs:
6969
pull-docker-image:
7070
needs: check-labels
7171
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
7373
steps:
7474
- name: Log in to GitHub Container Registry
7575
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
@@ -92,7 +92,7 @@ jobs:
9292
- find-e2e-tests
9393
- pull-docker-image
9494

95-
if: always() && needs.check-labels.outputs.run-sdk-tests == 'true'
95+
if: needs.check-labels.outputs.run-sdk-tests == true
9696
runs-on: ubuntu-latest
9797
strategy:
9898
fail-fast: false
@@ -194,7 +194,7 @@ jobs:
194194
run-integration-and-unit-test:
195195
needs:
196196
- check-labels
197-
if: always() && needs.check-labels.outputs.run-sdk-tests == 'true'
197+
if: needs.check-labels.outputs.run-sdk-tests == true
198198
runs-on: ubuntu-latest
199199
steps:
200200
- name: Check-out repository

0 commit comments

Comments
 (0)