Skip to content

Fix MRO order of inherited classes #59

Fix MRO order of inherited classes

Fix MRO order of inherited classes #59

Workflow file for this run

name: Python package
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
pip install uv
- name: Sync dependencies with uv
run: |
uv sync --locked
- name: Test with pytest
run: |
uv run pytest -v
env:
FORCE_COLOR: "1"