fix(dns): allow DoH nameserver inputs in set commands #81
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26.x' | |
| - name: Setup gotestfmt | |
| uses: gotesttools/gotestfmt-action@v2 | |
| with: | |
| token: ${{ github.token }} | |
| - name: Run Go tests (formatted) | |
| shell: bash | |
| run: | | |
| set -o pipefail | |
| go test -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt | |
| - name: Verify generated docs | |
| run: make docs-check | |
| - name: Coverage gap report | |
| run: make coverage-gaps-check | |
| - name: Upload coverage gap artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: coverage-gaps | |
| path: coverage/ |