Skip to content

deps: update click requirement from <=8.2.1 to <=8.3.1 #31

deps: update click requirement from <=8.2.1 to <=8.3.1

deps: update click requirement from <=8.2.1 to <=8.3.1 #31

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tox-dev/action-pre-commit-uv@v1
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run tests with coverage
run: uv run coverage run -m pytest
- name: Generate lcov report
run: uv run coverage lcov -o coverage.lcov
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: coverage.lcov
flag-name: python-${{ matrix.python-version }}
parallel: true
coveralls-finished:
needs: test
if: always()
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true