Super Hyper Meta v1 #3
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: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: Install System Dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y flex bison build-essential libfl-dev | |
| - name: Install Python Dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install .[test] | |
| - name: Bootstrap System | |
| run: make bootstrap | |
| - name: Verify Build | |
| run: make verify-build | |
| - name: Run Demo (Hello World) | |
| run: make demo-hello | |
| - name: Run Tests | |
| run: make test | |