Skip to content

tests: add tests for the assembler #23

tests: add tests for the assembler

tests: add tests for the assembler #23

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install packages
run: sudo apt-get install -y flex
- name: fetch submodule
run: git submodule update --init
- name: build the app
run: mkdir build && cd build && cmake .. && cmake --build .
- name: test
run: ./build/TESTS_LEXER