Skip to content

build(deps): bump codecov/codecov-action from 3 to 5 #43

build(deps): bump codecov/codecov-action from 3 to 5

build(deps): bump codecov/codecov-action from 3 to 5 #43

Workflow file for this run

name: Lint
on:
push:
branches:
- "master"
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup python and uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
python-version: ${{ matrix.python }}
enable-cache: true
cache-dependency-glob: |
setup.py
- name: Install nox
run: |
uv pip install nox
nox --version
- name: Lint
env:
FORCE_COLOR: "1"
run: nox -s lint