Skip to content

chore: sync test fixtures as of 2026-03-20 15:00:59 (#494) #863

chore: sync test fixtures as of 2026-03-20 15:00:59 (#494)

chore: sync test fixtures as of 2026-03-20 15:00:59 (#494) #863

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Run markdownlint-cli
uses: nosborn/github-action-markdown-cli@v3.5.0
with:
files: .
config_file: ".markdownlint.yaml"
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
needs:
- markdown-lint
strategy:
matrix:
python-version:
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: "1.4.1"
- run: make test