Skip to content

Add email screenshots to README, replace text examples #4

Add email screenshots to README, replace text examples

Add email screenshots to README, replace text examples #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest ruff
- name: Lint
run: ruff check .
- name: Test
run: pytest tests/ -v