github.com/nektos/act@v0.2.63/pkg/runner/testdata/networking/push.yml (about)

     1  name: test network setup
     2  on: push
     3  jobs:
     4    test:
     5      runs-on: ubuntu-latest
     6      steps:
     7        - name: Install tools
     8          run: |
     9            apt update
    10            apt install -y iputils-ping
    11        - name: Run hostname test
    12          run: |
    13            hostname -f
    14            ping -c 4 $(hostname -f)