Skip to content

Add CodeQL and secret scanning CI gates #209

Add CodeQL and secret scanning CI gates

Add CodeQL and secret scanning CI gates #209

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
name: "IntentProof CI: Build and Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -e ".[dev]"
- name: Run tests with coverage
run: pytest -q
- name: Enforce coverage threshold
run: bash ./scripts/check-coverage.sh 95