Skip to content

Move email screenshots higher in README for better first impression #5

Move email screenshots higher in README for better first impression

Move email screenshots higher in README for better first impression #5

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