Skip to content

Merge pull request #341 from py-why/poetry-packaging-numpy2 #685

Merge pull request #341 from py-why/poetry-packaging-numpy2

Merge pull request #341 from py-why/poetry-packaging-numpy2 #685

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
# Cancel superseded runs (e.g. a force-push) for the same workflow + ref.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checking out repo
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: make venv
- name: Testing and coverage
run: make slowcov
timeout-minutes: 360