mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
- Simplified CI to just build validation (no more failing tests/lints) - Combined release.yml and pypi.yml into single workflow - Simplified security.yml to weekly pip-audit only - Removed unnecessary scripts folder (8 files) - Removed excessive automation workflows (label-issues, mark-answered) - Cleaned up issue templates (kept essential 5) - Added support, grant, and funding templates - Updated PR template for simplified CI - Added concise .github/README.md
19 lines
340 B
YAML
19 lines
340 B
YAML
name: Security
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 1'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- run: pip install pip-audit
|
|
- run: pip-audit
|
|
continue-on-error: true
|