Skip to content

Update numpy dependency version in pyproject.toml #39

Update numpy dependency version in pyproject.toml

Update numpy dependency version in pyproject.toml #39

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test_lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, ¨3.10¨, 3.11, 3.12]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.in-project true
poetry install
- name: Testing
run: |
poetry run python -m unittest discover .