Skip to content

docs: add AGENTS.md with AI contribution guidelines (#9) #19

docs: add AGENTS.md with AI contribution guidelines (#9)

docs: add AGENTS.md with AI contribution guidelines (#9) #19

Workflow file for this run

name: coverage
on:
pull_request:
push:
branches:
- "main"
permissions:
contents: read
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v6
with:
go-version: "1.25"
- uses: actions/checkout@v6
- run: go test -coverprofile=speed-proxy.cov -coverpkg=./... ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: speed-proxy.cov
parallel: true
finish:
needs: coverage
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true