Skip to content

Fixes

Fixes #127

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_tests:
runs-on: ubuntu-24.04
# Running without container causes EACCES in BIND.
container:
image: gcc:15
steps:
- uses: actions/checkout@v2
- name: Update and upgrade packages
run: apt-get update -y && apt-get upgrade -y
- name: Install packages
run: apt-get install -y make bind9 pkg-config libssl-dev openssl
- name: Run tests
run: make test -j $(nproc)