- is not restricted to --volume (can use --env, etc.) - --volume is sanitized with valid_volumes
12 lines
256 B
YAML
12 lines
256 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- run: |
|
|
test -f /srv/example-config-options-volume-valid
|
|
- run: |
|
|
! test -f /srv/example-config-options-volume-invalid
|
|
- run: |
|
|
test "$FROB" = "NITZ"
|