Skip to content

Adds Engine Synchronization #1

Adds Engine Synchronization

Adds Engine Synchronization #1

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
cmake \
gcc \
g++ \
ninja-build
- name: Run tests
run: |
chmod +x run_tests.sh
./run_tests.sh
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: test/build/Testing/
if-no-files-found: ignore