fix: add pytest step
Some checks failed
CI / test (push) Failing after 5s

This commit is contained in:
2026-02-02 04:27:08 +00:00
parent 339e36fece
commit e42e7e7bc4

View File

@@ -3,4 +3,14 @@ on: [push, pull_request]
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: [ { run: "echo hello" } ] steps:
- name: Clone repo
run: |
git clone https://${{ gitea.server }}/${{ gitea.repository }} .
git checkout ${{ gitea.sha }}
- name: Install and test
run: |
pip3 install pytest
pip3 install click pyyaml rich
pytest tests/ -v --tb=short