File tree Expand file tree Collapse file tree 1 file changed +0
-25
lines changed
Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -5,31 +5,6 @@ concurrency:
55 group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
66 cancel-in-progress : true
77jobs :
8- Python-Code-Quality :
9- runs-on : ubuntu-latest
10- steps :
11- - uses : actions/checkout@v3
12- - uses : actions/setup-python@v4
13- with :
14- python-version : 3.9
15- cache : pip
16- - name : Create and start a virtual environment
17- run : |
18- python -m venv venv
19- source venv/bin/activate
20- - name : Install dependencies
21- run : |
22- source venv/bin/activate
23- pip install --upgrade pip
24- pip install isort black
25- - name : Check style with black
26- run : |
27- source venv/bin/activate
28- black --check .
29- - name : Check style with isort
30- run : |
31- source venv/bin/activate
32- isort --check .
338 Python-Precommit :
349 runs-on : ubuntu-latest
3510 steps :
You can’t perform that action at this time.
0 commit comments