14 lines
310 B
YAML
14 lines
310 B
YAML
name: Validate NixOS Config
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu
|
|
options: --cap-add=NET_RAW --cap-add=NET_ADMIN
|
|
steps:
|
|
- name: Install and run ping
|
|
run: |
|
|
apt-get update && apt-get install -y iputils-ping
|
|
ping -c 4 google.com
|