Skip to content

Update Check & Deploy workflow #212

Update Check & Deploy workflow

Update Check & Deploy workflow #212

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout git repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
pip install .[sampling,plotting,testing]
pip install pytest
- name: Test with pytest
run: |
pytest