Skip to content

Prune completed §1/§5/§7 execution prompts; fix orphaned §5.3 bullet #32

Prune completed §1/§5/§7 execution prompts; fix orphaned §5.3 bullet

Prune completed §1/§5/§7 execution prompts; fix orphaned §5.3 bullet #32

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
sudo apt update
sudo apt install -y libncurses-dev libsdl1.2-compat-dev libxmu-dev
- name: configure
run: cmake -B build
- name: build
run: cmake --build build -j$(nproc)
- name: test
run: ctest --test-dir build --output-on-failure --label-exclude long