Skip to content

chore(deps): update golangci/golangci-lint-action digest to 17a5bf4 #217

chore(deps): update golangci/golangci-lint-action digest to 17a5bf4

chore(deps): update golangci/golangci-lint-action digest to 17a5bf4 #217

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build-lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- uses: ./.github/actions/setup-goversion
- name: Build
run: go build -v ./...
- name: Lint
uses: golangci/golangci-lint-action@aa6fad0ea02e00c7c9e34e4ce5c63572b250d70c
with:
version: v1.64.7
- name: Test
run: go test -v ./...