We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38bd2c9 commit 613517aCopy full SHA for 613517a
.github/workflows/build.yaml
@@ -1,7 +1,12 @@
1
name: Build
2
on:
3
- - push
4
- - pull_request
+ # Only run workflow when there is push to main or when there is a pull request to main
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
jobs:
11
test:
12
# When running with act (https://github.com/nektos/act), these lines need to be appended with the ACT variable
pytest.ini
@@ -1,4 +1,4 @@
[pytest]
addopts = --strict-markers
markers =
- serial: Mark tests which should be done serially
+ serial
0 commit comments