Use simpler variable names for Gitea Actions
Some checks failed
CI / test (push) Failing after 3s

This commit is contained in:
2026-02-01 05:22:01 +00:00
parent 1d74d82379
commit 64d1fa488b

View File

@@ -6,13 +6,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout repository
run: |
git clone https://gitea.com/${{ github.repository }} ${{ github.workspace }}
cd ${{ github.workspace }}
git checkout ${{ github.sha }}
- name: Run tests
git clone https://gitea.com/$GITEA_REPO_NAME . 2>/dev/null || git clone https://gitea.com/${{ github.repository }} .
- name: Install and test
run: |
cd ${{ github.workspace }}
pip3 install -e . pytest 2>/dev/null || pip install -e . pytest
python3 -m pytest tests/ -v 2>/dev/null || python -m pytest tests/ -v
pip install -e . pytest
pytest tests/ -v