File tree Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 20
20
- ' .env.example'
21
21
- ' .github/workflows/**'
22
22
- ' static/**'
23
- workflow_run :
24
- workflows : ["Run pytest"]
25
- types :
26
- - completed
23
+ # workflow_run:
24
+ # workflows: ["Run pytest"]
25
+ # types:
26
+ # - completed
27
27
28
28
env :
29
29
REGISTRY_URL : ghcr.io
33
33
jobs :
34
34
push_to_registry :
35
35
name : Push Docker image to container registry
36
- if : |
37
- (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))) ||
38
- (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
36
+ # if: |
37
+ # (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))) ||
38
+ # (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
39
39
runs-on : ubuntu-latest
40
40
strategy :
41
41
matrix :
Original file line number Diff line number Diff line change 1
- name : Run pytest in Docker
1
+ name : Run pytest
2
2
3
3
on :
4
- push :
5
- branches :
6
- - main
7
- - master
8
- paths :
9
- - ' **/*.py'
10
- pull_request :
11
- branches :
12
- - main
13
- - master
14
- paths :
15
- - ' **/*.py'
4
+ # push:
5
+ # branches:
6
+ # - main
7
+ # - master
8
+ # paths:
9
+ # - '**/*.py'
10
+ # pull_request:
11
+ # branches:
12
+ # - main
13
+ # - master
14
+ # paths:
15
+ # - '**/*.py'
16
16
workflow_dispatch :
17
17
18
18
jobs :
You can’t perform that action at this time.
0 commit comments