Skip to content

Fixes typo in app name #13

Fixes typo in app name

Fixes typo in app name #13

Workflow file for this run

# This workflow builds the repo
name: Build
# Triggers the workflow on push or pull request events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main, release* ]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt update && sudo apt install -y libacl1-dev libncurses5-dev
- name: Build
run: cmake -B build && cmake --build build