Skip to content

CI: (deps): Bump numpy from 1.24.4 to 1.25.1 in /ci #3670

CI: (deps): Bump numpy from 1.24.4 to 1.25.1 in /ci

CI: (deps): Bump numpy from 1.24.4 to 1.25.1 in /ci #3670

Workflow file for this run

name: Conda Tests
# We don't want pushes (or PRs) to gh-pages to kick anything off
on:
push:
branches:
- main
- '[0-9]+.[0-9]+.x'
pull_request:
branches:
- main
- '[0-9]+.[0-9]+.x'
concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
#
# Run all tests on Conda on both Windows and macOS
#
CondaTests:
name: ${{ matrix.os }} ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
python-version: [3.9, '3.10', 3.11]
os: [macOS, Windows]
steps:
# We check out only a limited depth and then pull tags to save time
- name: Checkout source
uses: actions/checkout@v3
with:
fetch-depth: 100
- name: Get tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Install from Conda
uses: ./.github/actions/install-conda
with:
type: 'test'
python-version: ${{ matrix.python-version }}
- name: Run tests
uses: ./.github/actions/run-tests
with:
run-doctests: ${{ runner.os != 'Windows' }}
key: conda-${{ matrix.python-version }}-${{ runner.os }}