Skip to content

Merge pull request #10 from raquentin/context-specific-lexing #29

Merge pull request #10 from raquentin/context-specific-lexing

Merge pull request #10 from raquentin/context-specific-lexing #29

Workflow file for this run

name: CI Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Configure CMake
run: |
mkdir build
cd build
cmake ..
- name: Build the project
run: |
cd build
cmake --build .
- name: Run tests
run: |
cd build
ctest