Run pytest as workflow (only for PRs to release for now...)

This commit is contained in:
Dominik Moritz Roth 2024-02-10 13:13:59 +01:00
parent 4eadfd1566
commit 12a3558950

29
.github/workflows/pytest.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Run pytest
on:
push:
branches:
# - master
- release
pull_request:
branches:
# - master
- release
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install package dependencies
run: pip install .[testing]
- name: Run pytest
run: pytest