Add release and PR title checks, shared CI scripts, Gitea PR template, and align pyproject.toml to v0.3.1. Co-authored-by: Cursor <[email protected]>
30 lines
555 B
YAML
30 lines
555 B
YAML
name: Security Audit
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 0" # Weekly
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
safety:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version-file: .python-version
|
|
|
|
- name: Install uv
|
|
run: pip install uv
|
|
|
|
- name: Install dependencies
|
|
env:
|
|
UV_LINK_MODE: copy
|
|
run: uv sync
|
|
|
|
- name: Run safety check
|
|
run: uv run safety check
|