Reduce number of Redmine API calls from backend #559
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: golangci-lint | |
on: | |
pull_request: | |
paths: | |
- backend/** | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: go-linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v2 | |
with: | |
version: latest | |
working-directory: backend | |
args: --timeout=5m |