Skip to content

chore(deps): bump github.com/miekg/dns from 1.1.50 to 1.1.61 #24

chore(deps): bump github.com/miekg/dns from 1.1.50 to 1.1.61

chore(deps): bump github.com/miekg/dns from 1.1.50 to 1.1.61 #24

Workflow file for this run

name: Go build-test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', '1.20' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Fetch deps
run: make -f ci/Makefile deps
- name: Build
run: make -f ci/Makefile build
- name: Test
run: make -f ci/Makefile test