Skip to content

Bump the minor-bumps group with 7 updates #61

Bump the minor-bumps group with 7 updates

Bump the minor-bumps group with 7 updates #61

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23.x"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23.x"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest