Skip to content

docs: add jikan docs link to Anime resource #65

docs: add jikan docs link to Anime resource

docs: add jikan docs link to Anime resource #65

Workflow file for this run

name: Test anmoku (pytest & ruff)
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[dev]
- name: Run ruff and pytest
run: |
ruff check .
pytest -v