File tree Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change 77 test-python :
88 # Install dependencies and run tests
99 docker :
10- - image : cimg/python:3.8 -node
10+ - image : cimg/python:3.9 -node
1111 steps :
1212 - checkout
1313 - python/install-packages :
14- pkg-manager : pip-dist
14+ pkg-manager : pip
1515 - run :
1616 name : Run tests
1717 command : pytest --junitxml=junit.xml || ((($? == 5)) && echo 'Did not find any tests to run.')
2020 build-package :
2121 # build python package
2222 docker :
23- - image : cimg/python:3.8 -node
23+ - image : cimg/python:3.9 -node
2424 steps :
2525 - checkout
2626 - run :
@@ -30,25 +30,10 @@ jobs:
3030 - store_artifacts :
3131 path : dist
3232 destination : ~/artifacts
33- deploy :
34- # This is an example deploy job, not actually used by the workflow
35- docker :
36- - image : cimg/base:stable
37- steps :
38- # Replace this with steps to deploy to users
39- - run :
40- name : deploy
41- command : ' #e.g. ./deploy.sh'
42- - run :
43- name : found github actions config
44- command : ' :'
4533workflows :
4634 build-and-test :
4735 jobs :
4836 - test-python
4937 - build-package :
5038 requires :
5139 - test-python
52- # - deploy:
53- # requires:
54- # - build-package
You can’t perform that action at this time.
0 commit comments