Skip to content

fix(email): use noreply@arkforge.tech as SMTP from address — arkforge… #313

fix(email): use noreply@arkforge.tech as SMTP from address — arkforge…

fix(email): use noreply@arkforge.tech as SMTP from address — arkforge… #313

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -e ".[test]"
- name: Generate test signing key
run: python3 -m trust_layer.crypto
- name: Run tests
run: pytest tests/ -v
- name: Audit dependencies
run: |
pip install pip-audit
pip-audit
continue-on-error: true