macos/.github/workflows/check.yml
Kroese 6f833321b3
Some checks failed
Build / Test (push) Has been cancelled
Build / Build (push) Has been cancelled
Update / dockerHubDescription (push) Has been cancelled
build: Pin Alpine version (#133)
2024-11-16 14:32:19 +01:00

20 lines
595 B
YAML

on: [workflow_call]
name: "Check"
permissions: {}
jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x --source-path=src -e SC1091 -e SC2001 -e SC2002 -e SC2034 -e SC2064 -e SC2153 -e SC2317 -e SC2028
- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
ignore: DL3008,DL3018,DL3020,DL3029,DL3059
failure-threshold: warning