2025-01-11 09:02:39 +01:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: docker
|
2025-01-22 18:46:02 +01:00
|
|
|
container:
|
|
|
|
options: "--hostname customname"
|
2025-01-11 09:02:39 +01:00
|
|
|
steps:
|
|
|
|
- run: |
|
|
|
|
test -f /srv/example-config-options-volume-valid
|
|
|
|
- run: |
|
|
|
|
! test -f /srv/example-config-options-volume-invalid
|
|
|
|
- run: |
|
|
|
|
test "$FROB" = "NITZ"
|
2025-01-22 18:46:02 +01:00
|
|
|
- run: |
|
|
|
|
test "$(cat /etc/hostname)" = customname
|