Skip to content

Merge pull request #21 from nia05-tch/add-new-personalities #21

Merge pull request #21 from nia05-tch/add-new-personalities

Merge pull request #21 from nia05-tch/add-new-personalities #21

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run Ruff (lint)
run: |
ruff check src tests
- name: Run Black (format check)
run: |
black --check src tests
- name: Run tests (pytest)
run: |
pytest