Skip to content

CI (bleeding edge) #731

CI (bleeding edge)

CI (bleeding edge) #731

name: CI (bleeding edge)
# goals: check stability against
# - dev version of numpy, matplotlib, scipy, h5py and astropy
# - building with future pip default options
on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/bleeding-edge.yaml
schedule:
# run this every Wednesday at 3 am UTC
- cron: 0 3 * * 3
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Dev upstream
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --pre --only-binary ":all:" \
numpy matplotlib scipy h5py \
--extra-index-url \
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install --pre --only-binary ":all:" \
astropy \
--extra-index-url https://pypi.anaconda.org/astropy/simple/ \
--extra-index-url https://pypi.anaconda.org/liberfa/simple
- name: Build amical
run: |
python -m pip install --requirement requirements/tests.txt --pre
python -m pip install --no-build-isolation .
- run: python -m pip list
- name: Run tests
run: |
pytest --color=yes