Merge pull request #427 from OpenCOMPES/python-upgrade-39 #143
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
# Tests for all supported versions [Python 3.9|3.10|3.11|3.12] | |
name: Unit Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main, v1_feature_branch ] | |
paths-ignore: | |
pyproject.toml | |
jobs: | |
pytest: | |
# Using matrix strategy | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11.8", "3.12.2"] | |
runs-on: ubuntu-latest | |
steps: | |
# Check out repo and set up Python | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: ${{matrix.python-version}} | |
poetry-version: 1.8.3 | |
# Use cached python and dependencies, install poetry | |
- name: Run tests on python ${{matrix.python-version}} | |
run: | | |
poetry run pytest --full-trace --show-capture=no -sv -n auto tests/ |