Skip to content

feat(build): add justfile and GitHub CI config #2

feat(build): add justfile and GitHub CI config

feat(build): add justfile and GitHub CI config #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
- join
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Ensure submodules are present
run: git submodule update --init --recursive
- name: Configure (Debug)
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --parallel
- name: Run tests
run: ctest --test-dir build --output-on-failure