Skip to content

Commit 95d267d

Browse files
committed
Sequential tests
1 parent c217868 commit 95d267d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci_checks.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ on:
99
workflow_dispatch:
1010

1111
jobs:
12-
test-python36:
12+
test-s2i-builder-images:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
16-
with:
17-
ref: more-python-versions
1816
- name: "Install s2i"
1917
run: |
2018
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
2119
sudo cp s2i /usr/local/bin
22-
- name: Run the test script
20+
- name: Test python 3.6 image
2321
run: make test -C python36-slim/
24-
25-
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/

0 commit comments

Comments
 (0)