Skip to content

Add support for setting the job name - used as the lock key when usin… #760

Add support for setting the job name - used as the lock key when usin…

Add support for setting the job name - used as the lock key when usin… #760

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: golangci-lint
jobs:
golangci:
strategy:
matrix:
go-version:
- "1.20"
name: lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
with:
version: v1.51.2
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: test
run: make test