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

ci(config): fix discord notification workflow #19

ci(config): fix discord notification workflow

ci(config): fix discord notification workflow #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: uv python install ${{ matrix.python-version }}
- run: uv sync --dev
- run: uv run ruff check .
- run: uv run pytest