Skip to content

Merge pull request #170 from Malwarebytes/dependabot/uv/ruff-0.15.4 #23

Merge pull request #170 from Malwarebytes/dependabot/uv/ruff-0.15.4

Merge pull request #170 from Malwarebytes/dependabot/uv/ruff-0.15.4 #23

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Run tests
run: uv run --extra dev pytest tests/ -v