Skip to content

Check and Lint Repo

Check and Lint Repo #3

Workflow file for this run

---
name: "Check and Lint Repo"
on:
workflow_dispatch:
pull_request:
paths:
- "**/*.sh"
- ".github/workflows/*.yml"
- "Dockerfile"
jobs:
check:
name: Check and Lint Repo
runs-on: ubuntu-latest
steps:
- name: Checkout project ⬇️
uses: actions/checkout@v4
- name: Run ShellCheck 🐚
uses: ludeeus/action-shellcheck@master
- name: Lint Dockerfile 🐋
uses: hadolint/hadolint-action@master
with:
dockerfile: Dockerfile
failure-threshold: warning