Skip to content

Feature/enhance multi platform build #86

Feature/enhance multi platform build

Feature/enhance multi platform build #86

Workflow file for this run

name: lint
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
- release-**
paths-ignore: ['docs/**', '**.md', '**.mdx', '**.png', '**.jpg']
env:
# Common versions
GO_VERSION: '1.19'
jobs:
lint:
name: "Lint & Format"
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
submodules: true
fetch-depth: 0
- name: golangci-lint
run: make lint