mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-13 23:16:44 +00:00
no ref - The only real desire here is to make the renovate PRs a bit easier and nicer to reach - If we don't specify the exact version it creates PRs that are a bit confusing and aren't clear that its bumping a minor version
18 lines
307 B
YAML
18 lines
307 B
YAML
---
|
|
name: "ShellCheck"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- renovate/*
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: ShellCheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.3.0
|
|
- name: Run ShellCheck
|
|
run: find . -type f -name "*.sh" -exec shellcheck {} +
|