Skip to content

Update library to support TacoMail API v2 #3

Update library to support TacoMail API v2

Update library to support TacoMail API v2 #3

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --group dev
- name: Run linter
run: uv run ruff check .
- name: Run tests
env:
POSTMARK_API_TOKEN: ${{ secrets.POSTMARK_API_TOKEN }}
SENDER_EMAIL: ${{ secrets.SENDER_EMAIL }}
run: uv run pytest tests/ -v