Merge pull request #742 from opendevstack/feature/pipeline-run-name-a… #982
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go 1.19 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.51.1 | |
args: --timeout=5m0s | |
- name: ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
ignore_paths: test/testdata/workspaces |