Skip to content

SERVER-216: new packaging system #106

SERVER-216: new packaging system

SERVER-216: new packaging system #106

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
pull_request:
branches:
- main
env:
GOLANGCI_LINT_VERSION: v2.4
permissions:
contents: read
pull-requests: write
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Setup go version
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}