File tree Expand file tree Collapse file tree 2 files changed +16
-36
lines changed
Expand file tree Collapse file tree 2 files changed +16
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99 workflow_dispatch :
1010
1111jobs :
12- test-python36 :
13- uses : vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
14- with :
15- imagename : python36-slim
16- test-python37 :
17- uses : vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
18- with :
19- imagename : python37-slim
20- test-python38 :
21- uses : vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
22- with :
23- imagename : python38- slim
24- test-python39 :
25- uses : vikinganalytics/daeploy-s2i-python/.github/workflows/ci_check_image.yml@more-python-versions
26- with :
27- imagename : python39-slim
12+ test-s2i-builder-image :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : " Install s2i "
17+ run : |
18+ wget -c https://github.com/openshift/source-to-image/releases/download/v1.3.0/source-to-image-v1.3.0-eed2850f-linux-amd64.tar.gz -O - | tar -xz
19+ sudo cp s2i /usr/local/bin
20+ - name : Test python 3.6 image
21+ run : make test -C python36-slim/
22+ - name : Test python 3.7 image
23+ run : make test -C python37- slim/
24+ - name : Test python 3.8 image
25+ run : make test -C python38-slim/
26+ - name : Test python 3.9 image
27+ run : make test -C python39-slim/
You can’t perform that action at this time.
0 commit comments