Files
stundenfuchs/.github/workflows/ci.yml
T
maddin 6fbd1bb3c2
CI / checks (push) Has been cancelled
chore: initialize public repository
2026-03-22 12:57:09 +00:00

41 lines
752 B
YAML

name: CI
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install Python deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt djlint pytest
- name: Install Node deps
run: npm ci
- name: Run policy checks
run: make policy
- name: Run linters
run: make lint
- name: Run tests
run: make test