forked from DGNum/infrastructure
feat(infra): Add checks for meta
This commit is contained in:
parent
fdd4f4b443
commit
e9c6f0a2b6
3 changed files with 50 additions and 1 deletions
22
.forgejo/workflows/check-meta.yaml
Normal file
22
.forgejo/workflows/check-meta.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Check meta
|
||||
on:
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue