feat: add governance result card demo alias #552
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 | |
| - name: Install package | |
| run: pip install -e . | |
| - name: Run unit tests | |
| run: python3 -m unittest discover -s tests -q | |
| - name: Run scaffold smoke test | |
| run: | | |
| oss-launchpad init sample-agent --title "Sample Agent" --preset ai-agent | |
| test -f sample-agent/README.md | |
| test -f sample-agent/CONTRIBUTING.md | |
| test -f sample-agent/benchmark/README.md | |
| grep -q "public AI agent repository" sample-agent/README.md | |
| oss-launchpad init sample-lib --title "Sample Library" --preset python-lib | |
| grep -q "public Python library repository" sample-lib/README.md |