build(deps): bump numpy from 1.26.1 to 1.26.2 #541
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 | |
on: [push, pull_request] | |
env: | |
PYSYN_CDBS: "https://ssb.stsci.edu/trds" | |
jobs: | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Coverage test in Python 3 | |
os: ubuntu-latest | |
python: '3.11' | |
toxenv: py311-syn-cov | |
- name: Check for Sphinx doc build errors | |
os: ubuntu-latest | |
python: '3.10' | |
toxenv: docbuild | |
- name: Check accelerated math version | |
os: ubuntu-latest | |
python: '3.10' | |
toxenv: py310-numexpr-mkl-cov | |
- name: Try Astropy development version | |
os: ubuntu-latest | |
python: '3.10' | |
toxenv: py310-astropydev-test | |
- name: Try latest versions of all dependencies | |
os: ubuntu-latest | |
python: '3.11' | |
toxenv: py311-latest-test | |
- name: Try minimum supported versions | |
os: ubuntu-latest | |
python: '3.9' | |
toxenv: py39-legacy-test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Python dependencies | |
run: pip install tox tox-conda>=0.2 | |
- name: Check conda info | |
run: conda info | |
- name: Run tests with requirements file | |
if: ${{ contains(matrix.toxenv,'-latest') }} | |
run: | | |
cp $RUNNER_WORKSPACE/poppy/requirements.txt /tmp/ | |
tox -e ${{ matrix.toxenv }} | |
- name: Run tests | |
if: ${{ contains(matrix.toxenv,'-latest') != true }} | |
run: tox -e ${{ matrix.toxenv }} | |
- name: Upload coverage to codecov | |
if: ${{ contains(matrix.toxenv,'-cov') }} | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml |