Skip to content

update deps and linter settings #53

update deps and linter settings

update deps and linter settings #53

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras
- name: Run linters
run: |
uv run ruff format --check accentnotifications example tests;
uv run ruff check --diff accentnotifications example tests;
- name: Run tests
run: uv run pytest tests