Skip to content

Extract task-build skill to standalone skills repository #26

Extract task-build skill to standalone skills repository

Extract task-build skill to standalone skills repository #26

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install minimal validator dependency
run: python -m pip install pyyaml
- name: Compile Python sources
run: |
python -m compileall -q psyflow tests
python -m py_compile setup.py
- name: Run contracts validator smoke
run: python -m psyflow.validate 'psyflow/templates/cookiecutter-psyflow/{{cookiecutter.project_name}}'
- name: Run unit tests
run: python -m unittest discover -s tests -p "test_*.py"