Skip to content

Super Hyper Meta v1

Super Hyper Meta v1 #3

Workflow file for this run

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