Skip to content

Add SECURITY.md, PR and issue templates with private vuln reporting #7

Add SECURITY.md, PR and issue templates with private vuln reporting

Add SECURITY.md, PR and issue templates with private vuln reporting #7

Workflow file for this run

name: Type Checking
on: [push, pull_request]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: "3.11"
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run mypy
run: uv run mypy crudauth tests --config-file pyproject.toml