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