Skip to content

chore(deps): update golangci/golangci-lint-action action to v7 #35

chore(deps): update golangci/golangci-lint-action action to v7

chore(deps): update golangci/golangci-lint-action action to v7 #35

Workflow file for this run

name: Build Lint and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
permissions:
contents: read
pull-requests: read
checks: write
jobs:
build-lint-test:
name: Build Lint and Test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Set up gotestfmt
uses: GoTestTools/gotestfmt-action@v2
with:
repo: gotestfmt
version: v2.5.0
- name: Build
run: make build
- name: Unit Tests
run: make test
- uses: golangci/golangci-lint-action@v7
name: Linting