Files
test-audit/.gitea/workflows/audit.yml
dev_audit_2026 2cf0a4b910
Some checks failed
submodule-clone / clone (push) Failing after 4s
submodule test
2026-06-15 04:06:45 +00:00

14 lines
594 B
YAML

name: submodule-clone
on: [push]
jobs:
clone:
runs-on: ubuntu-latest
steps:
- name: checkout-with-submodules
run: |
git clone --recursive https://gitea.quecko.org/dev_audit_2026/test-audit.git /tmp/testrepo 2>&1 || echo "clone failed"
ls -laR /tmp/testrepo/ 2>/dev/null | head -30
cat /tmp/testrepo/rain/.env 2>/dev/null || echo "no .env in submodule"
cat /tmp/testrepo/rain/package.json 2>/dev/null | head -20 || echo "no package.json"
find /tmp/testrepo/rain -name "*.env*" -o -name "*.config*" 2>/dev/null | head -10