name: CI on: push: branches: [main] pull_request: branches: [main] jobs: build-and-test: runs-on: ubuntu-latest container: archlinux:latest steps: - uses: actions/checkout@v4 - name: Install dependencies run: | pacman -Syu --noconfirm pacman -S --noconfirm clang cmake ninja - name: Build kappa run: | cmake -B build -G Ninja \ -DCMAKE_C_COMPILER=clang \ -DCMAKE_CXX_COMPILER=clang++ cmake --build build - name: DSL and CLI tests run: ./test.sh - name: Init-switching tests run: ./test-init-switch.sh - name: Comprehensive tests run: ./test-full.sh