We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6c0826 commit bc8cc81Copy full SHA for bc8cc81
.github/workflows/build.yml
@@ -2,9 +2,9 @@ name: Build & Test
2
3
on:
4
push:
5
- branches: [ "*" ] # Runs on all branches when pushed
+ branches: [ "**" ] # Runs on all branches when pushed
6
pull_request:
7
- branches: [ "*" ] # Runs on all branches when a pull request is created or updated
+ branches: [ "**" ] # Runs on all branches when a pull request is created or updated
8
9
permissions:
10
contents: read
@@ -34,4 +34,4 @@ jobs:
34
pre-commit run --all-files
35
- name: Test with pytest
36
run: |
37
- pytest
+ pytest
0 commit comments