Skip to content

Begin explanation of parseStatement method [thesis] #9

Begin explanation of parseStatement method [thesis]

Begin explanation of parseStatement method [thesis] #9

name: Functional tests
on:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install CMake
run: sudo apt update && sudo apt install -y cmake make
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build interpreter
run: make build
- name: Run functional tests
run: make test-interpreter