AB#525 Consolidated setup in pyproject.toml and updated GH-actions ve… #287
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: CI on push to branch | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "**" | |
jobs: | |
run-unittests: | |
name: Run unittests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: | | |
**/pyproject.toml | |
**/tests/__init__.py # Make cache key depend on test file to differentiate from docs cache | |
- name: Install test dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install flit>=3.4 | |
flit install --only-deps --extras=test | |
- name: Run unittests via pytest | |
run: pytest -vv -m "not endtoend and not singularity_integration and not conda_integration" |