Skip to content

CI (bleeding-edge) #169

CI (bleeding-edge)

CI (bleeding-edge) #169

Workflow file for this run

name: CI (bleeding-edge)
# weekly check for stability against dev version of
# - numpy
# - matplotlib,
# - scipy
on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/bleeding-edge.yml
schedule:
# run this once a week (wednesday) at 3 am UTC
- cron: 0 3 * * 3
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12-dev
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install numpy matplotlib scipy --pre \
--only-binary ":all:" \
--extra-index \
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install .
python -m pip install --requirement requirements/tests.txt
- run: python -m pip list
- name: Run pytest
run: pytest --color=yes