27 lines
532 B
YAML
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' |