Skip to content

chore(sync): snapshot local changes #18

chore(sync): snapshot local changes

chore(sync): snapshot local changes #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Python ${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.12']
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Verify dependency consistency
run: python -m pip check
- name: Run full test suite
run: python -m pytest -q --tb=short
- name: Compile Python sources
run: python -m compileall autogen_starter autogen_dashboard maf_starter main.py -q
- name: Validate dashboard JavaScript
run: node --check autogen_dashboard/static/app.js