Skip to content

Commit

Permalink
Update ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
observingClouds authored Sep 20, 2023
1 parent 363f6af commit f839489
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: pytest
runs-on: ubuntu-latest
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
if: needs.detect-ci-trigger.outputs.triggered == 'false' || workflow_dispatch is not null
defaults:
run:
shell: 'bash -l {0}'
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
name: notebooks
runs-on: ubuntu-latest
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
if: needs.detect-ci-trigger.outputs.triggered == 'false' || workflow_dispatch is not null
defaults:
run:
shell: 'bash -l {0}'
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
name: 'install xbitinfo, ${{ matrix.os }}'
runs-on: '${{ matrix.os }}'
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'false'
if: needs.detect-ci-trigger.outputs.triggered == 'false' || workflow_dispatch is not null
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit f839489

Please sign in to comment.