Skip to content

Commit 23d275f

Browse files
authored
Adding multiple OS dockers for tests
1 parent 0af3854 commit 23d275f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/dockerimage.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@ on:
88

99
jobs:
1010

11-
build:
11+
test-alpine:
1212

1313
runs-on: ubuntu-latest
1414

1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Run Tests on Alpine Linux
1818
run: docker run alpine pwd
19+
20+
test-ubuntu:
21+
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- uses: actions/checkout@v2
26+
- name: Run Tests on Ubuntu Linux
27+
run: docker run ubuntu pwd

0 commit comments

Comments
 (0)