fix: added back authz message handler in worker (#121) #913
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: Lint | |
# Lint runs golangci-lint over the entire Juno repository. | |
# This workflow is run on every pull request and push to master. | |
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed. | |
on: | |
pull_request: | |
push: | |
branches: | |
- cosmos/* | |
jobs: | |
GolangCI: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 6 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Compute diff 📜 | |
uses: technote-space/[email protected] | |
with: | |
SUFFIX_FILTER: | | |
.go | |
.mod | |
.sum | |
- name: Setup Go 🧰 | |
if: "env.GIT_DIFF != ''" | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- name: Run lint ✅ | |
if: "env.GIT_DIFF != ''" | |
run: make lint |