2024-03-29 14:37:21 +01:00
|
|
|
jobs:
|
2024-11-11 17:52:23 +01:00
|
|
|
check_dns:
|
2024-03-29 14:37:21 +01:00
|
|
|
runs-on: nix
|
|
|
|
steps:
|
2024-11-11 17:52:23 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Check the validity of the DNS configuration
|
2024-11-14 22:18:40 +01:00
|
|
|
run: nix-build meta/verify.nix -A dns
|
2024-11-11 17:52:23 +01:00
|
|
|
check_meta:
|
2024-03-29 14:37:21 +01:00
|
|
|
runs-on: nix
|
|
|
|
steps:
|
2024-11-11 17:52:23 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Check the validity of meta options
|
|
|
|
run: nix-build meta/verify.nix -A meta
|
|
|
|
name: Check meta
|
|
|
|
'on':
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- meta/*
|