15 lines
292 B
YAML
15 lines
292 B
YAML
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)
|