Skip to content

Bump Version

Bump Version #55

Workflow file for this run

name: build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run tests
run: go test -v ./...
- name: Run lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.12.2