Skip to content

ci: make the template reproducible in GitHub Actions and dev containers #1

ci: make the template reproducible in GitHub Actions and dev containers

ci: make the template reproducible in GitHub Actions and dev containers #1

Workflow file for this run

name: Audit
on:
push:
branches:
- main
- feature/**
pull_request:
schedule:
- cron: '0 3 * * 1'
workflow_dispatch:
permissions:
contents: read
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Sync dependencies
run: uv sync --group dev --all-extras --frozen
- name: Run pip-audit
run: make audit