File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 11# This workflow will install Python dependencies, run tests and lint with a single version of Python
22# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
33
4- name : Python application
4+ name : Python CI
55
66on :
77 push :
8- branches : [ "main " ]
8+ branches : [ "develop " ]
99 pull_request :
10- branches : [ "main " ]
10+ branches : [ "develop " ]
1111
1212permissions :
1313 contents : read
1414
1515jobs :
16- build :
17-
16+ ci :
1817 runs-on : ubuntu-latest
19-
2018 steps :
2119 - uses : actions/checkout@v4
20+
2221 - name : Set up Python 3.10
2322 uses : actions/setup-python@v3
2423 with :
2524 python-version : " 3.10"
25+
2626 - name : Poetry Install
2727 uses : ClementWalter/poetry-action@v1
28+ with : bash
29+
2830 - name : Lint with flake8
2931 run : |
3032 # stop the build if there are Python syntax errors or undefined names
You can’t perform that action at this time.
0 commit comments