Skip to content

Commit

Permalink
Fixed the skipping of two tests in release (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
CatChen authored Oct 31, 2022
1 parent be37373 commit 2a95079
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ jobs:
!startsWith(github.head_ref, 'workflows/tests/') && (
(github.event_name == 'pull_request' && github.actor != 'dependabot[bot]') ||
(github.event_name == 'workflow_run' && github.actor == 'dependabot[bot]') ||
github.event_name == 'workflow_dispatch'
github.event_name == 'workflow_dispatch' ||
github.event_name == 'workflow_call'
)
}}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -209,7 +210,8 @@ jobs:
!startsWith(github.head_ref, 'workflows/tests/') && (
(github.event_name == 'pull_request' && github.actor != 'dependabot[bot]') ||
(github.event_name == 'workflow_run' && github.actor == 'dependabot[bot]') ||
github.event_name == 'workflow_dispatch'
github.event_name == 'workflow_dispatch' ||
github.event_name == 'workflow_call'
)
}}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2a95079

Please sign in to comment.