Skip to content

#96 #Merge pull request from deshima-dev/astropenguin/issue95 #34

#96 #Merge pull request from deshima-dev/astropenguin/issue95

#96 #Merge pull request from deshima-dev/astropenguin/issue95 #34

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- deshima2.0
- v0.3
pull_request:
branches:
- main
- deshima2.0
- v0.3
jobs:
job:
name: Test (Python ${{ matrix.python }})
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.8.3"
- run: poetry install
- run: black --check deshima_sensitivity docs tests
- run: pytest -v tests
- run: docs/build