Skip to content

ci: Split GitHub Actions into separate workflows (#7) #23

ci: Split GitHub Actions into separate workflows (#7)

ci: Split GitHub Actions into separate workflows (#7) #23

Workflow file for this run

name: Basic 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 basic tests (no email sending required)
run: uv run pytest tests/ -v -m "not flow"
- name: Run async basic tests
run: uv run pytest tests/test_tacomail_async.py -v -m "not flow"