Skip to content

Updating tests to reflect updates in package (#537) #94

Updating tests to reflect updates in package (#537)

Updating tests to reflect updates in package (#537) #94

Workflow file for this run

---
name: project-lint
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: "1.23"
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Caching dependency
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
~/go/bin
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
only-new-issues: true