Files
simpleorm/.gitea/workflows/test.yml
T
gdulai f19c82a2ad
Debug / test (push) Successful in 2s
Fix failing ci/cd setup
2026-06-02 22:10:03 +02:00

27 lines
532 B
YAML

name: Debug
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Show workspace
run: |
echo "=== Workspace ==="
pwd
ls -la
- name: Dump environment variables
run: |
echo "=== Environment Variables ==="
env | sort
- name: Dump relevant variables only
run: |
echo "=== Repository-related Variables ==="
env | grep -Ei 'gitea|github|repo|repository|workspace|ci'