Skip to content

Commit

Permalink
Fix integration test workflow (#1439)
Browse files Browse the repository at this point in the history
We want to trigger integration tests on every branch
except master branch. Got this from stackoverflow[1]

[1] https://stackoverflow.com/a/57903434
  • Loading branch information
zaro0508 committed Feb 8, 2024
1 parent 64fdbab commit 609e4f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/branch-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ name: branch-integration-tests
on:
push:
branches:
- '*'
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- '!master' # excludes master

jobs:
integration-tests:
Expand Down

0 comments on commit 609e4f1

Please sign in to comment.