Skip to content

Delete .DS_Store

Delete .DS_Store #10

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/shellcheck.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/shellcheck.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: shellcheck
- push
- pull_request
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
shellcheck:
stage: linting
image: registry.gitlab.com/pipeline-components/shellcheck:latest
script:
- |
find . -name .git -type d -prune -o -type f -name \*.sh -print0 |
xargs -0 -r -n1 shellcheck