Skip to content

feat: align pricing, funding, and termination #19

feat: align pricing, funding, and termination

feat: align pricing, funding, and termination #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
permissions:
contents: read
jobs:
check:
name: build / vet / lint / test
runs-on: ${{ vars.RUNS_ON || 'ubuntu-latest' }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '>=1.26.3 <1.27.0'
check-latest: true
cache: true
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11.4
args: --timeout=5m
- name: Test
run: go test ./...
vuln:
name: govulncheck
runs-on: ${{ vars.RUNS_ON || 'ubuntu-latest' }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '>=1.26.3 <1.27.0'
check-latest: true
cache: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck ./...