Skip to content

Merge pull request #213 from volodia99/dependabot/github_actions/dot-… #23

Merge pull request #213 from volodia99/dependabot/github_actions/dot-…

Merge pull request #213 from volodia99/dependabot/github_actions/dot-… #23

Workflow file for this run

name: CI (bleeding-edge)
# weekly check for stability against dev version of
# - numpy
# - matplotlib,
# - scipy
# - scikit-image
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@v4
with:
python-version: 3.11-dev
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install numpy matplotlib scipy scikit-image --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
- name: Run pytest
run: |
python -m pip freeze
pytest --color=yes