File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed
Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change 1- version : 2.0
1+ version : 2.1
22
33build_and_test : &build_and_test_steps
44 - checkout
55 # Do not use `sudo pip`
6- # pipx is already installed but `pipx list` is empty
6+ # pipx is already installed, but `pipx list` is empty
77 - run : python --version ; pip --version ; pipx --version ; pwd ; ls -l
88 - run : pip install pytest -r requirements.txt
99 - run : pip install --editable .
@@ -13,24 +13,22 @@ build_and_test: &build_and_test_steps
1313jobs :
1414 StyleCheck :
1515 docker :
16- - image : cimg/python:3.11
16+ - image : cimg/python:3.14
1717 steps :
1818 - checkout
19- - run : python --version ; pip --version ; pwd ; ls -l
20- - run : pip install black codespell ruff
21- - run : codespell -L queenland,uint,assertin
22- - run : ruff check
23- - run : black . --check
19+ - run : python --version ; pip --version ; pipx --version ; pwd ; ls -l
20+ - run : pipx run codespell -L queenland,uint,assertin
21+ - run : pipx run ruff check
22+ - run : pipx run black . --check
2423
2524
2625 Python3 :
2726 docker :
28- - image : cimg/python:3.11
27+ - image : cimg/python:3.14
2928 steps : *build_and_test_steps
3029
3130
3231workflows :
33- version : 2
3432 build :
3533 jobs :
3634 - StyleCheck
You can’t perform that action at this time.
0 commit comments