Add checkout and install steps
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-02-01 05:22:54 +00:00
parent 464b4ef182
commit 60946bb427

View File

@@ -6,5 +6,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Hello
run: echo "Hello World"
- name: Checkout
run: |
git clone https://gitea.com/$GITEA_REPO_NAME .
- name: Install
run: |
pip install -e . pytest
- name: Test
run: |
pytest tests/ -v