Files
the-nexus/.github/workflows/ci.yml
Alexander Whitestone ac55429bd3
Some checks failed
CI / test (pull_request) Failing after 8s
CI / validate (pull_request) Failing after 3s
feat: [QA][POLICY] Branch Protection + Mandatory Review Policy for All Repos (#918)
Refs #918
Agent: groq
2026-04-07 04:54:18 -04:00

20 lines
349 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install -r requirements.txt
- run: pytest