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

This commit is contained in:
2026-05-30 19:20:03 +00:00
parent 4b2ce601ac
commit 6861471ad3
+13 -7
View File
@@ -2,18 +2,24 @@ name: ShellCheck CI
on: on:
push: push:
branches: [ main, feature/* ] branches: [ master, feature/* ]
pull_request: pull_request:
branches: [ main ] branches: [ master ]
jobs: jobs:
shellcheck: shellcheck:
runs-on: deploy runs-on: deploy
container:
image: koalaman/shellcheck-alpine:stable # imagem oficial do shellcheck
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
run: |
git clone http://10.11.10.71:3000/${{ gitea.repository }}.git .
git checkout ${{ gitea.sha }}
- name: Run ShellCheck - name: Run ShellCheck
uses: ludeeus/action-shellcheck@master run: |
with: find . -name "*.sh" \
severity: warning -not -path "./logs/*" \
ignore_paths: logs -exec shellcheck --severity=warning {} +