org-rw/.gitea/workflows/pytest.yaml
Sergio Martínez Portela fc5acbced1
Some checks failed
Pytest / pytest (push) Failing after 16s
Add PyTest Gitea action.
2023-10-15 23:30:32 +02:00

15 lines
369 B
YAML

name: Pytest
# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt update && apt install -f python3-pip
- run: pip install -r requirements.txt
- run: pip install pytest
- run: pytest