Skip to content

build(deps): bump the actions group with 2 updates #18

build(deps): bump the actions group with 2 updates

build(deps): bump the actions group with 2 updates #18

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
# Many color libraries just need this to be set to any value, but at least
# one distinguishes color depth, where "3" -> "256-bit color".
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/action@v3.0.1
# with:
# extra_args: --hook-stage manual --all-files
# - name: Run PyLint
# run: pipx run nox -s pylint -- --output-format=github
checks:
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
# needs: [pre-commit]
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.13"]
runs-on: [ubuntu-latest, windows-latest, macos-14]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.4.26"
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --extra test
- name: Test package
run: >-
uv run pytest --cov --cov-report=xml --cov-report=term --durations=20
- name: Upload coverage report
uses: codecov/codecov-action@v5.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}