foot/.gitea/workflows/test.yml
shylie c5c149d9c8
Some checks failed
Test / build (push) Failing after 3s
Revert to v4
2026-03-25 01:44:19 -04:00

19 lines
363 B
YAML

name: Test
on: push
jobs:
build:
runs-on: shy-server
steps:
- name: Checkout current
uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure
run: cmake -S . -B build
- name: Build
run: cmake --build build
- name: Test
run: cd build && ctest --output-on-failure