Excluir .github/workflows/shellcheck.yml
Deploy via Script Externo / deploy (push) Failing after 5s
Teste Shell Runner / shell-test (push) Successful in 19s

This commit is contained in:
2026-05-30 19:22:15 +00:00
parent 6861471ad3
commit 31a1757c45
-25
View File
@@ -1,25 +0,0 @@
name: ShellCheck CI
on:
push:
branches: [ master, feature/* ]
pull_request:
branches: [ master ]
jobs:
shellcheck:
runs-on: deploy
container:
image: koalaman/shellcheck-alpine:stable # imagem oficial do shellcheck
steps:
- name: Checkout
run: |
git clone http://10.11.10.71:3000/${{ gitea.repository }}.git .
git checkout ${{ gitea.sha }}
- name: Run ShellCheck
run: |
find . -name "*.sh" \
-not -path "./logs/*" \
-exec shellcheck --severity=warning {} +