Skip to content

CI: add a build against numpy nightly #308

CI: add a build against numpy nightly

CI: add a build against numpy nightly #308

Workflow file for this run

name: Test
on:
# Trigger the workflow on push or pull request, but only on main branch
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read # to fetch code
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: pre-commit/action@v3.0.0
build:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} numpy-nightly=${{ matrix.numpy-nightly }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
numpy-nightly: [false]
include:
- os: ubuntu-latest
python-version: "3.12"
numpy-nightly: true
- os: macOS-11
python-version: "3.11"
numpy-nightly: false
- os: windows-2019
python-version: "3.11"
numpy-nightly: false
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies with numpy nightly
if: ${{ matrix.numpy-nightly == true }}
run: |
python -m pip install --upgrade pip
python -m pip install -U --pre numpy \
-i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -c "import numpy; print(f'{numpy.__version__=}')"
python -m pip install setuptools
python -m pip install .[dev] --no-build-isolation
- name: Install dependencies
if: ${{ matrix.numpy-nightly == false }}
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Run tests
run: |
pytest -n auto