Skip to content

fix: unsupported param type url.URL #877

fix: unsupported param type url.URL

fix: unsupported param type url.URL #877

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.21, 1.22, 1.23]
name: Build & Test
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
- run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}