Skip to content

Merge branch 'main' into dependabot/go_modules/github.com/caddyserver… #40

Merge branch 'main' into dependabot/go_modules/github.com/caddyserver…

Merge branch 'main' into dependabot/go_modules/github.com/caddyserver… #40

Workflow file for this run

name: Go
on:
push:
pull_request:
jobs:
build:
name: Build and Unit Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Check out code
uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race -covermode=atomic -coverprofile=coverage.txt