Skip to content

chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.15.17 #1096

chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.15.17

chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.15.17 #1096

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
- uses: ./.github/actions/install-gammu
- name: Install
run: uv sync --all-extras --dev
- name: Test
run: uv run pytest --cov
- name: Examples
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
source .venv/bin/activate
./examples/run-dummy.sh
- uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}