TST: use uv everywhere in CI #796
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: 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 uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: '3.13' | |
- name: configure uv | |
run: | | |
echo "UV_PRERELEASE=allow" >> $GITHUB_ENV | |
echo "UV_INDEX=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple https://pypi.anaconda.org/astropy/simple/ https://pypi.anaconda.org/liberfa/simple" >> $GITHUB_ENV | |
echo "UV_INDEX_STRATEGY=unsafe-best-match" >> $GITHUB_ENV | |
- name: Build amical | |
run: uv sync --no-editable --group test | |
- name: Run tests | |
run: uv run --no-sync pytest --color=yes |