diff options
Diffstat (limited to 'pkg/runner/testdata/networking/push.yml')
-rw-r--r-- | pkg/runner/testdata/networking/push.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/runner/testdata/networking/push.yml b/pkg/runner/testdata/networking/push.yml new file mode 100644 index 0000000..2b1bf9a --- /dev/null +++ b/pkg/runner/testdata/networking/push.yml @@ -0,0 +1,14 @@ +name: test network setup +on: push +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Install tools + run: | + apt update + apt install -y bind9-host + - name: Run hostname test + run: | + hostname -f + host $(hostname -f) |