Skip to content

feat: Replace existing codebase with DNSTap implementation #7

feat: Replace existing codebase with DNSTap implementation

feat: Replace existing codebase with DNSTap implementation #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
nix-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build firewall controller package
run: nix build .#firewall-controller
- name: Build modified CoreDNS package
run: nix build .#coredns
go-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
- name: Run tests
run: go test -v ./...