chore(deps): bump codecov/codecov-action from 4.5.0 to 5.1.1 in the actions group across 1 directory #214
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: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: 3 | |
jobs: | |
pre-commit: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --hook-stage manual --all-files | |
- name: Run PyLint | |
run: | | |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json" | |
pipx run nox -s pylint | |
checks: | |
name: | |
"py:${{ matrix.python-version }} np:${{ matrix.numpy-version }} os:${{ | |
matrix.runs-on }}" | |
runs-on: ${{ matrix.runs-on }} | |
needs: [pre-commit] | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.12"] | |
numpy-version: ["latest"] | |
runs-on: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- python-version: "pypy-3.10" | |
numpy-version: "latest" | |
runs-on: ubuntu-latest | |
- python-version: "3.9" | |
numpy-version: "1.24.0" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install uv | |
run: python -m pip install --upgrade uv | |
- name: Install old NumPy | |
if: matrix.numpy-version != 'latest' | |
run: uv pip install --system numpy==${{ matrix.numpy-version }} | |
- name: Install package | |
run: uv pip install --system '.[test]' | |
- name: Print NumPy version | |
run: python -c 'import numpy as np; print(np.__version__)' | |
- name: Test package | |
run: >- | |
pytest -ra --cov --cov-report=xml --cov-report=term --durations=20 | |
- name: Upload coverage report | |
uses: codecov/[email protected] |