Skip to content

Renovate: Update actions/checkout action to v6 #205

Renovate: Update actions/checkout action to v6

Renovate: Update actions/checkout action to v6 #205

Workflow file for this run

name: "Unit tests"
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: 'go.mod'
token: ${{ secrets.GITHUB_TOKEN }}
- name: lint & test
run: make test
- name: build
run: make build-all