CI: add a build against numpy nightly #299
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[dev] | |
- name: Install numpy nightly | |
if: ${{ matrix.numpy-nightly == true }} | |
run: | | |
pip install -U --pre numpy \ | |
-i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple | |
- name: Run tests | |
run: | | |
pytest -n auto |