From f1af7750c9debfe6c345e3ddb79670be77e83577 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 1 Aug 2025 21:18:16 +0200 Subject: [PATCH] Add a build action --- .gitea/workflows/build.yaml | 23 +++++++++++++++++++++++ README.md | 8 ++++++++ 2 files changed, 31 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..64e3e94 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,23 @@ +name: Build + +on: + push: + branches: + - '**' + pull_request: + branches: [master] + +jobs: + build: + runs-on: alpine + steps: + - name: Set up environment + shell: ash {0} + run: | + apk -U upgrade + apk add --no-cache git bash cmake build-base ninja + - uses: actions/checkout@v4 + - name: Build + run: | + cmake -B build -G Ninja + ninja -C build diff --git a/README.md b/README.md index 4582401..41fb2fa 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,14 @@ Pass `-DCMAKE_BUILD_TYPE=Debug` or `-DCMAKE_BUILD_TYPE=Release` to This builds a CLI that can be then found in `./build/bin/katja`. +### Running the tests + +To run the tests follow the build instructions first and then do: + +```sh +ninja -C build test +``` + ## Project structure The library code is in `katja/`. Public headers are under `include/`.