Skip to content

Add linter workflow and fix reported issues #4

Add linter workflow and fix reported issues

Add linter workflow and fix reported issues #4

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
hadolint:
name: Hadolint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: reviewdog/action-hadolint@v1
with:
reporter: github-pr-check
filter_mode: nofilter
fail_on_error: true
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-check
filter_mode: nofilter
fail_on_error: true