Skip to content

Bump the core-packages group across 1 directory with 2 updates #356

Bump the core-packages group across 1 directory with 2 updates

Bump the core-packages group across 1 directory with 2 updates #356

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
Lint:
runs-on: ubuntu-24.04
strategy:
fail-fast: true
matrix:
python-version: ["3.14"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install tox-uv
run: uv tool install tox --with tox-uv
- name: ruff
run: |
tox -e ruff-check
tests:
runs-on: ubuntu-24.04
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.12", "3.14"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: sudo apt update && sudo apt install --yes libev-dev
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install tox-uv
run: uv tool install tox --with tox-uv
- name: Unit tests
run: |
tox -e ${{ matrix.python-version }}
- name: Functional tests
run: |
tox -e ${{ matrix.python-version }}-functional