File tree Expand file tree Collapse file tree 1 file changed +16
-9
lines changed Expand file tree Collapse file tree 1 file changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,25 @@ jobs:
18
18
- uses : actions/checkout@v2
19
19
- name : Build
20
20
run : |
21
- docker build --tag bashbrew --pull .
22
- docker run --rm bashbrew tar -cC /usr/local/bin bashbrew | tar -xv
23
- ./bashbrew --version
21
+ ./bashbrew.sh --version > /dev/null
22
+ bin/bashbrew --version
24
23
- name : Smoke Test
25
24
run : |
26
25
image='https://github.com/docker-library/official-images/raw/master/library/hello-world'
27
- ./bashbrew list "$image"
28
- ./bashbrew list --uniq "$image"
29
- ./bashbrew cat "$image"
30
- ./bashbrew from --uniq "$image"
31
- release :
32
- name : Release (test)
26
+ bin/bashbrew list "$image"
27
+ bin/bashbrew list --uniq "$image"
28
+ bin/bashbrew cat "$image"
29
+ bin/bashbrew from --uniq "$image"
30
+ dockerfile :
31
+ name : Test Dockerfile
32
+ runs-on : ubuntu-latest
33
+ steps :
34
+ - uses : actions/checkout@v2
35
+ - name : Build Dockerfile
36
+ run : |
37
+ docker build --pull .
38
+ dockerfile-release :
39
+ name : Test Dockerfile.release
33
40
runs-on : ubuntu-latest
34
41
steps :
35
42
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments