Merge pull request #103 from rollandf/dockerargbp #263
Workflow file for this run
This file contains hidden or 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: go-static-analysis | |
| on: [push, pull_request] | |
| jobs: | |
| golangci: | |
| name: Lint | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.24.x | |
| - name: checkout PR | |
| uses: actions/checkout@v5 | |
| - name: run make lint | |
| run: make lint | |
| shellcheck: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: checkout PR | |
| uses: actions/checkout@v5 | |
| - name: run make shellcheck | |
| run: make shellcheck | |
| hadolint: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.24.x | |
| - name: checkout PR | |
| uses: actions/checkout@v5 | |
| - name: run make hadolint | |
| run: make hadolint |