Debug workflow to see environment
All checks were successful
CI / debug (push) Successful in 1s

This commit is contained in:
2026-02-01 05:30:42 +00:00
parent 586b055bd9
commit eb595127ed

View File

@@ -3,13 +3,12 @@ name: CI
on: [push, pull_request]
jobs:
test:
debug:
runs-on: ubuntu-latest
steps:
- name: Install
- name: Debug
run: |
pip3 install --upgrade pip setuptools wheel 2>/dev/null || pip install --upgrade pip setuptools wheel
pip3 install -e . pytest 2>/dev/null || pip install -e . pytest
- name: Test
run: |
pytest tests/ -v 2>/dev/null || python3 -m pytest tests/ -v
echo "PWD: $(pwd)"
echo "ls: $(ls -la)"
echo "GITEA_REPO_NAME: $GITEA_REPO_NAME"
echo "github.repository: $github.repository"