Skip to content

Bump github.com/caddyserver/caddy/v2 from 2.7.3 to 2.7.5 (#61) #187

Bump github.com/caddyserver/caddy/v2 from 2.7.3 to 2.7.5 (#61)

Bump github.com/caddyserver/caddy/v2 from 2.7.3 to 2.7.5 (#61) #187

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
lint-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: test -z $(go fmt)
test-go:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)