test repoless execution #103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security Checks | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
pip-audit: | |
runs-on: ubuntu-latest | |
name: Pip Audit | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
version: '0.5.6' | |
enable-cache: true | |
- name: Install project dependencies | |
run: | | |
uv sync | |
source .venv/bin/activate | |
- uses: pypa/[email protected] | |
with: | |
virtual-environment: .venv | |
summary: true |