Skip to content

slight optimizations (x2 parsing speed) #10

slight optimizations (x2 parsing speed)

slight optimizations (x2 parsing speed) #10

Workflow file for this run

name: Run RIFT tests
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure CMake project
run: |
mkdir build
cd build
cmake .. -DRIFT_BUILD_TESTS=ON
- name: Build project
run: cmake --build build
- name: Run tests
run: |
cd build
./rift_test
if [ $? -ne 0 ]; then
exit 1
fi