Files
act/pkg/runner/testdata/networking/push.yml

15 lines
292 B
YAML
Raw Normal View History

name: test network setup
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install tools
run: |
apt update
apt install -y iputils-ping
- name: Run hostname test
run: |
hostname -f
ping -c 4 $(hostname -f)