Skip to content

chore(deps): update actions/setup-go digest to d35c59a #93

chore(deps): update actions/setup-go digest to d35c59a

chore(deps): update actions/setup-go digest to d35c59a #93

Workflow file for this run

name: Lint project
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
# perform matrix testing to give us an earlier insight into issues with different versions of supported major versions of Go
matrix:
version:
- "1.20"
- "1.21"
steps:
- name: Check out source code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version: ${{ matrix.version }}
- name: Run `make lint-ci`
run: make lint-ci