Skip to content

Add EmailTemplate class and extend template API #39

Add EmailTemplate class and extend template API

Add EmailTemplate class and extend template API #39

Workflow file for this run

name: Tests and checks
on: push
permissions:
contents: read
jobs:
check:
name: Test python${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tests
run: tox -e py${{ matrix.python }}
- name: Run linters
run: tox -e pre-commit
- name: Run type checking
run: tox -e mypy