org-rw/.gitea/workflows/pytest.yaml
Sergio Martínez Portela f7ddddb8c9 Add PyTest Gitea action.
2023-10-15 23:32:32 +02:00

15 lines
362 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-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install pytest
- run: pytest