Skip to content

feat: implement runner-side hash verification and execution integrity… #164

feat: implement runner-side hash verification and execution integrity…

feat: implement runner-side hash verification and execution integrity… #164

Workflow file for this run

name: Code Quality
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
cache: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
args: --timeout=5m --out-format=colored-line-number --config=.golangci-ci.yml
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true