Add ChaosTestCI workflow
All checks were successful
ChaosTest CI / build-and-test (push) Successful in 29s

This commit is contained in:
hashlag
2025-09-21 17:09:14 +03:00
parent 78d5c1a2a1
commit 8a065f5ad6

View File

@@ -0,0 +1,30 @@
name: ChaosTest CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
- name: Configure, build
run: |
mkdir build
cd build
cmake ..
cmake --build .
- name: Run tests
run: |
cd build
./ChaosTests/ChaosTests