Skip to content

Bump github.com/miekg/dns from 1.1.55 to 1.1.57 #118

Bump github.com/miekg/dns from 1.1.55 to 1.1.57

Bump github.com/miekg/dns from 1.1.55 to 1.1.57 #118

Workflow file for this run

name: Go Coverage
on: [pull_request, push]
jobs:
test:
name: Coverage
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build -v ./...
- name: Test With Coverage
run: |
go test -coverprofile=cover.out -covermode=atomic -race ./...; [ -f cover.out ] && cat cover.out >> ../coverage.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.0.2