end-to-end/actions/example-config-options/.forgejo/workflows/test.yml
Earl Warren f6f0acae0e
actions: verify runner config options for the container
- is not restricted to --volume (can use --env, etc.)
- --volume is sanitized with valid_volumes
2025-01-11 09:02:39 +01:00

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"