Construct element gonols and test molecular affixiation #2
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: Stack CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - "agent/**" | |
| jobs: | |
| stack-root: | |
| name: Stack root verification | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out stack | |
| uses: actions/checkout@v7.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@v7.0.0 | |
| with: | |
| python-version: "3.12" | |
| - name: Verify stack manifest | |
| run: python3 tools/check_stack_manifest.py | |
| - name: Check whitespace | |
| run: git diff --check |