foot/.gitea/workflows/test.yml
shylie 80d83f2062
All checks were successful
Test / build (push) Successful in 13s
Add SIMD instruction variants
2025-08-17 11:18:08 -04:00

17 lines
317 B
YAML

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