Skip to content

Fix patent number routing in GetPatentInfoParsed #6

Fix patent number routing in GetPatentInfoParsed

Fix patent number routing in GetPatentInfoParsed #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v7
with:
version: latest
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: go test -race -count=1 ./...
- name: Check formatting
run: test -z "$(gofmt -l .)"