attempt to get github ci running on push #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests (On Push) | |
on: | |
push: | |
jobs: | |
run-tests-ubuntu-23_10-python-3_11: | |
runs-on: ubuntu-23.10 | |
name: Ubuntu 23.10, Python 3.11 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: pip install --upgrade pip | |
- run: pip install .[dev] | |
- env: | |
PYTHONPATH: . | |
- run: pytest tests/validation/ |