File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ doc_files: &doc_files
11
11
- package.json
12
12
- package-lock.json
13
13
14
+ poetry_all : &poetry_all
15
+ - pyproject.toml
16
+ - poetry.lock
17
+
14
18
python_all : &python_all
15
19
- " **/*.py"
16
20
Original file line number Diff line number Diff line change 24
24
outputs :
25
25
documentation : ${{ steps.changes.outputs.documentation_all }}
26
26
python : ${{ steps.changes.outputs.python_all }}
27
+ poetry : ${{ steps.changes.outputs.poetry_all }}
27
28
yaml : ${{ steps.changes.outputs.yaml_all }}
28
29
steps :
29
30
- name : " Check out repository code"
93
94
run : " yamllint -s ."
94
95
95
96
python-tests :
96
- if : needs.files-changed.outputs.python == 'true'
97
+ if : needs.files-changed.outputs.python == 'true' ||
98
+ needs.files-changed.outputs.poetry == 'true'
97
99
needs : ["files-changed"]
98
100
runs-on : " ubuntu-latest"
99
101
strategy :
You can’t perform that action at this time.
0 commit comments