PR Title Check / check-title (pull_request) Successful in 6s
Test Python Package / unit-tests (pull_request) Successful in 13s
Code Quality Pipeline / code-quality (pull_request) Successful in 23s
Test Python Package / integration-tests (pull_request) Successful in 26s
Test Python Package / coverage-report (pull_request) Successful in 16s
Co-authored-by: Cursor <[email protected]>
24 lines
496 B
YAML
24 lines
496 B
YAML
name: Security Audit
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 0" # Weekly
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
safety:
|
|
runs-on: python-repositories-ci
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Sync dependencies
|
|
env:
|
|
UV_LINK_MODE: copy
|
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
run: uv sync --frozen
|
|
|
|
- name: Run safety check
|
|
run: uv run safety check
|