Skip to content

feat: context-specific lexing #27

feat: context-specific lexing

feat: context-specific lexing #27

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-latest
env:
CXX: clang++-14
CLANG_FORMAT: clang-format-14
steps:
- uses: actions/checkout@v2
- name: Install CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.28.x'
- name: Install dependencies
run: sudo apt-get install -y gcc g++ clang
- 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