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