Clone with GITEA_REPO_NAME and test
Some checks failed
CI / test (push) Failing after 2s

This commit is contained in:
2026-02-01 05:31:16 +00:00
parent eb595127ed
commit d6951bfdab

View File

@@ -3,12 +3,16 @@ name: CI
on: [push, pull_request]
jobs:
debug:
test:
runs-on: ubuntu-latest
steps:
- name: Debug
- name: Debug vars
run: |
echo "PWD: $(pwd)"
echo "ls: $(ls -la)"
echo "GITEA_REPO_NAME: $GITEA_REPO_NAME"
echo "github.repository: $github.repository"
echo "GITEA_REPO_NAME=$GITEA_REPO_NAME"
- name: Clone
run: |
git clone "https://gitea.com/${GITEA_REPO_NAME}.git" .
- name: Install
run: pip3 install -e . pytest
- name: Test
run: pytest tests/ -v