Extract task-build skill to standalone skills repository #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |