Add github action to run UnitTests
Publish doxygen documentation to seodisparate.com / doxygen-gen-and-publish (push) Successful in 1s Details
Run UnitTests / build-and-run-unittests (push) Successful in 13s Details

This commit is contained in:
Stephen Seo 2024-01-17 19:22:20 +09:00
parent 222639ec3a
commit 599ebca196
1 changed files with 18 additions and 0 deletions

18
.github/workflows/unittests.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Run UnitTests
on:
push:
branches:
- '*'
jobs:
build-and-run-unittests:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo /usr/bin/env DEBIAN_FRONTEND=noninteractive apt-get install libgtest-dev cmake
- name: Get sources
run: git clone --depth=1 --no-single-branch https://github.com/Stephen-Seo/EntityComponentMetaSystem.git ECMS && cd ECMS && git checkout $GITHUB_REF_NAME
- name: Build UnitTests
run: cd ECMS && cmake -S src -B buildDebug -DCMAKE_BUILD_TYPE=Debug && make -C buildDebug
- name: Run UnitTests
run: ./ECMS/buildDebug/UnitTests