Merge pull request #629 from bgruening/25.1.1 #152
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: Lint | |
| on: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| # - name: Cleanup to only use compose | |
| # run: rm -R docs galaxy test | |
| - name: Run shellcheck with reviewdog | |
| uses: reviewdog/action-shellcheck@v1.27.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-check | |
| level: warning | |
| pattern: "*.sh" | |
| - name: Run hadolint with reviewdog | |
| uses: reviewdog/action-hadolint@v1.46.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-check |