Skip to content

build(deps): bump github.com/golangci/golangci-lint from 1.55.2 to 1.59.0 in /apis #436

build(deps): bump github.com/golangci/golangci-lint from 1.55.2 to 1.59.0 in /apis

build(deps): bump github.com/golangci/golangci-lint from 1.55.2 to 1.59.0 in /apis #436

Workflow file for this run

name: APIs Lint
# Lint runs golangci-lint over the entire Themis repository.
# This workflow is run on every pull request and push to main.
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
on:
pull_request:
push:
branches:
- mainnet
- main
defaults:
run:
working-directory: apis
jobs:
GolangCI:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Go 🧰
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Compute diff 📜
uses: technote-space/[email protected]
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- name: Run lint ✅
if: env.GIT_DIFF
run: make lint