File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 66 selenium-4-alpha
77
88jobs :
9- build-and-test :
10- name : Build & test Docker images with random user
9+ build :
10+ name : Build Docker images
11+ runs-on : ubuntu-18.04
12+ steps :
13+ - uses : actions/checkout@v1
14+ - name : Output Docker info
15+ run : docker info
16+ - name : Build Docker images
17+ run : VERSION=${GITHUB_SHA} make build
18+ - name : Output Docker images
19+ run : docker images
20+ test :
21+ needs : build
22+ name : Test Docker images with random user
1123 runs-on : ubuntu-18.04
1224 strategy :
1325 matrix :
@@ -16,12 +28,12 @@ jobs:
1628 - uses : actions/checkout@v1
1729 - name : Output Docker info
1830 run : docker info
31+ - name : Output Docker images
32+ run : docker images
1933 - name : Set up Python 3.8
2034 uses : actions/setup-python@v2
2135 with :
2236 python-version : 3.8
23- - name : Build Docker images
24- run : VERSION=${GITHUB_SHA} make build
2537 - name : Test Docker images
2638 run : USE_RANDOM_USER_ID=${USE_RANDOM_USER} VERSION=${GITHUB_SHA} make test
2739 env :
You can’t perform that action at this time.
0 commit comments