File tree Expand file tree Collapse file tree 4 files changed +29
-5
lines changed Expand file tree Collapse file tree 4 files changed +29
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : mypy
2
2
3
3
on :
4
+ pull_request :
5
+ paths :
6
+ - ' **/*.py' # Watch for changes in any Python files
7
+ - ' pyproject.toml' # Watch for changes in the pyproject.toml file
4
8
push :
5
9
paths :
6
10
- ' **/*.py' # Watch for changes in any Python files
7
- - ' pyproject.yml ' # Watch for changes in the pyproject.yml file
11
+ - ' pyproject.toml ' # Watch for changes in the pyproject.toml file
8
12
workflow_dispatch :
9
13
release :
10
14
types : [published]
11
15
16
+ concurrency :
17
+ group : ci-${{github.workflow}}-${{ github.ref }}
18
+ cancel-in-progress : true
19
+
12
20
permissions :
13
21
contents : read
14
22
Original file line number Diff line number Diff line change 1
1
name : Pylint
2
2
3
3
on :
4
+ pull_request :
5
+ paths :
6
+ - ' **/*.py' # Watch for changes in any Python files
7
+ - ' pyproject.toml' # Watch for changes in the pyproject.toml file
4
8
push :
5
9
paths :
6
10
- ' **/*.py' # Watch for changes in any Python files
9
13
release :
10
14
types : [published]
11
15
16
+ concurrency :
17
+ group : ci-${{github.workflow}}-${{ github.ref }}
18
+ cancel-in-progress : true
19
+
12
20
permissions :
13
21
contents : read
14
22
Original file line number Diff line number Diff line change 11
11
- ' pyproject.toml' # Watch for changes in the pyproject.toml file
12
12
workflow_dispatch :
13
13
14
+ concurrency :
15
+ group : ci-${{github.workflow}}-${{ github.ref }}
16
+ cancel-in-progress : true
17
+
14
18
permissions :
15
19
contents : read
16
20
Original file line number Diff line number Diff line change 1
1
name : Ruff
2
2
3
3
on :
4
+ pull_request :
5
+ paths :
6
+ - ' **/*.py' # Watch for changes in any Python files
7
+ - ' pyproject.toml' # Watch for changes in the pyproject.toml file
4
8
push :
5
9
paths :
6
10
- ' **/*.py' # Watch for changes in any Python files
7
- - ' pyproject.yml ' # Watch for changes in the pyproject.yml file
11
+ - ' pyproject.toml ' # Watch for changes in the pyproject.toml file
8
12
workflow_dispatch :
9
13
release :
10
14
types : [published]
11
15
12
- # concurrency:
13
- # group: ci-${{github.workflow}}-${{ github.ref }}
14
- # cancel-in-progress: true
16
+ concurrency :
17
+ group : ci-${{github.workflow}}-${{ github.ref }}
18
+ cancel-in-progress : true
15
19
16
20
permissions :
17
21
contents : read
You can’t perform that action at this time.
0 commit comments