Skip to content

Bump github.com/miekg/dns from 1.1.58 to 1.1.59 #359

Bump github.com/miekg/dns from 1.1.58 to 1.1.59

Bump github.com/miekg/dns from 1.1.58 to 1.1.59 #359

Workflow file for this run

name: Go Tests
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.19
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Run tests with coverage
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4