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 b74fa6a commit 121365bCopy full SHA for 121365b
.github/workflows/pr-check.yml
@@ -2,12 +2,15 @@ name: PR Checks
2
3
on:
4
pull_request:
5
- types: [opened, synchronize, reopened, closed]
+ types: [opened, synchronize, reopened]
6
+
7
+ push:
8
+ branches:
9
+ - main
10
+ - 'releases/*'
11
12
jobs:
13
backend-test:
- # skip this check for closed PRs that are not merged
- if: ${{ github.event.action != 'closed' || github.event.pull_request.merged == true }}
14
runs-on: ubuntu-latest
15
defaults:
16
run:
@@ -46,8 +49,6 @@ jobs:
46
49
run: uv run pytest -v -s
47
50
48
51
frontend-build:
52
53
54
0 commit comments