Skip to content

Commit

Permalink
ci: don't skip tests from branch named dev
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jun 14, 2024
1 parent 1f663e7 commit 2a5d052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 20,7 @@ concurrency:
jobs:
setup:
runs-on: ubuntu-latest
if: github.event_name == 'push' || !((github.base_ref == '2.x') && github.head_ref == 'dev')
if: github.event_name == 'push'

steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 20,7 @@ concurrency:
jobs:
setup:
runs-on: ${{ matrix.os }}
if: github.event_name == 'push' || !((github.base_ref == '2.x') && github.head_ref == 'dev')
if: github.event_name == 'push'

strategy:
matrix:
Expand Down

0 comments on commit 2a5d052

Please sign in to comment.