Skip to content

Merge pull request #1745 from VershaAgrawal/add-spec-validation #152

Merge pull request #1745 from VershaAgrawal/add-spec-validation

Merge pull request #1745 from VershaAgrawal/add-spec-validation #152

Workflow file for this run

name: golangci-lint
on: [push, pull_request, workflow_dispatch]
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 90
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
cache: true
cache-dependency-path: |
**/go.sum
- name: run lint
id: run-build
run: make lint || exit 1