Skip to content

chore: Sync fixtures as of 2025-08-15 01:29:42 #785

chore: Sync fixtures as of 2025-08-15 01:29:42

chore: Sync fixtures as of 2025-08-15 01:29:42 #785

Workflow file for this run

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