Skip to content

feat(routes): add moderation route support #37

feat(routes): add moderation route support

feat(routes): add moderation route support #37

Workflow file for this run

name: Tox
on:
pull_request:
paths:
- "src/**"
- pyproject.toml
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout branch
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.8.2
- name: Install dependencies
shell: bash
run: |
poetry config virtualenvs.in-project true && \
poetry install --with dev
- name: Tox run
shell: bash
run: poetry run tox run