Skip to content

Bump pre-commit from 4.0.1 to 4.1.0 #353

Bump pre-commit from 4.0.1 to 4.1.0

Bump pre-commit from 4.0.1 to 4.1.0 #353

Workflow file for this run

---
name: Run Tox
on: # yamllint disable-line rule:truthy
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt install -y prometheus
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: pip install .[test]
- name: Run tox
run: tox -e py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: "${{secrets.CODECOV_TOKEN}}"
# disable until codecov improves stability
# fail_ci_if_error: true
files: ./src/coverage.xml
...