foot/.gitea/workflows/test.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 12: cannot unmarshal !!seq into map[string]string
2026-03-25 01:44:46 -04:00

19 lines
365 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