Fix is_domain_covered for the last NSEC #134
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |