Skip to content

Bump github.com/caddyserver/certmagic from 0.19.2 to 0.20.0 #407

Bump github.com/caddyserver/certmagic from 0.19.2 to 0.20.0

Bump github.com/caddyserver/certmagic from 0.19.2 to 0.20.0 #407

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go: [ '1.20', '1.21' ]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test -v -coverprofile="cover-profile.out" -short -race ./...