Skip to content
This repository was archived by the owner on Feb 8, 2026. It is now read-only.

update todo and remove test xmls (#3) #8

update todo and remove test xmls (#3)

update todo and remove test xmls (#3) #8

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install
- name: Style check
run: |
make check
- name: Run test
run: |
make test