Skip to content

updates 2

updates 2 #2

Workflow file for this run

name: Python package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pytest:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python-version: '3.9'
- os: ubuntu-latest
python-version: '3.10'
- os: ubuntu-latest
python-version: '3.11'
- os: ubuntu-latest
python-version: '3.12'
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.d/develop.txt
pip install -e .
- name: Test with pytest
run: |
pytest