hickory-dns/.github/workflows/conformance.yml
2024-06-07 11:04:41 +02:00

43 lines
1.0 KiB
YAML

name: conformance
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
everything:
# host is irrelevant because everything will run in Docker containers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy, rustfmt
- uses: extractions/setup-just@v2
- name: run test-framework tests
run: just conformance-framework
- name: run conformance tests against unbound
run: just conformance-unbound
- name: run conformance tests against BIND
run: just conformance-bind
- name: run conformance tests against hickory-dns
run: just conformance-hickory
- name: check that all the tests that now pass with hickory-dns are not marked as `#[ignore]`-d
run: just conformance-ignored
- name: lint code
run: just conformance-clippy
- name: check that code is formatted
run: just conformance-fmt