build(deps): bump github.com/gin-contrib/cors from 1.6.0 to 1.7.0 in /apis #421
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |