Skip to content

Merge branch 'master' of github.com:miekg/dns #4

Merge branch 'master' of github.com:miekg/dns

Merge branch 'master' of github.com:miekg/dns #4

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 1.22.x, 1.23.x, 1.24.x ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...