Add ChaosTestCI workflow
Some checks failed
ChaosTest CI / build-and-test (push) Failing after 1m35s

This commit is contained in:
hashlag
2025-09-21 16:58:00 +03:00
parent 78d5c1a2a1
commit 3f1efc5eeb

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