Skip to content

Update requirements as it was using the incorrect deps #4

Update requirements as it was using the incorrect deps

Update requirements as it was using the incorrect deps #4

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