fix: opencode run uses positional argument, not --instruction flag #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: Quality | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| static: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: python3 -m pip install -r requirements.txt | |
| - name: Compile runtime | |
| run: python3 -m py_compile daemon.py scripts/smoke.py | |
| - name: Run smoke checks | |
| run: python3 scripts/smoke.py | |
| - name: Check shell installer syntax | |
| run: bash -n install.sh |