We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3abbed commit edf5c6dCopy full SHA for edf5c6d
.circleci/config.yml
@@ -16,8 +16,8 @@ jobs:
16
- image: cimg/python:3.11
17
steps:
18
- checkout
19
- - run: for pkg in "black codespell flake8 ruff"; do; pipx install $pkg; done
20
- run: python --version ; pip --version ; pwd ; ls -l
+ - run: pip install black codespell flake8 ruff
21
- run: codespell -L queenland,uint
22
# stop the build if there are Python syntax errors or undefined names
23
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
@@ -26,7 +26,7 @@ jobs:
26
- run: black . --check
27
28
29
- Pytho3:
+ Python3:
30
docker:
31
32
steps: *build_and_test_steps
@@ -37,4 +37,4 @@ workflows:
37
build:
38
jobs:
39
- StyleCheck
40
- - Pytho3
+ - Python3
0 commit comments