Skip to content

Update container image cleanup GitHub actions #41

Update container image cleanup GitHub actions

Update container image cleanup GitHub actions #41

Workflow file for this run

---
name: Lint & Test
"on":
pull_request: {}
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-yamllint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
jsonnetfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
make -C gitlab jsonnetfmt_check
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-review
pattern: |
*.sh
step-*