Skip to content

perf(scanners): parallel walk, extension filter, text redaction #37

perf(scanners): parallel walk, extension filter, text redaction

perf(scanners): parallel walk, extension filter, text redaction #37

Workflow file for this run

name: PR Checks
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
lint-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: astral-sh/setup-uv@e58605a9b6da7c637471fab8847a5e5a6b8df081 # v5
with:
python-version: "3.13"
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Type check
run: make typecheck
- name: Test
run: make test