Skip to content

test: cover no v1 signatures in StandardWebhook #15

test: cover no v1 signatures in StandardWebhook

test: cover no v1 signatures in StandardWebhook #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: go vet ./...
- run: go test -race -covermode=atomic -coverprofile=coverage.txt ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}