Skip to content

fix: force all email links to open in new tab #3

fix: force all email links to open in new tab

fix: force all email links to open in new tab #3

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install ruff
run: pip install ruff
- name: Lint mail-service
run: ruff check mail-service/
- name: Lint mail-viewer
run: ruff check mail-viewer/app.py
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: mail-service
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run tests
run: pytest tests/ -v --tb=short