Skip to content

chore(deps): pin golangci/golangci-lint-action action to 3a91952 #45

chore(deps): pin golangci/golangci-lint-action action to 3a91952

chore(deps): pin golangci/golangci-lint-action action to 3a91952 #45

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
checks: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup Go
uses: ./.github/actions/setup-go
- name: Install dependencies
run: go get
- name: Build
run: go build -v
- name: Test
run: go test -v
- name: Lint
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3
with:
version: v1.56