Add forgejo action to run unit tests
This commit is contained in:
parent
a3cd26f529
commit
0b0c1eb213
1 changed files with 14 additions and 0 deletions
14
.forgejo/workflows/unittests.yml
Normal file
14
.forgejo/workflows/unittests.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
name: Run UnitTests
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-run-unittests:
|
||||||
|
runs-on: archLinux
|
||||||
|
steps:
|
||||||
|
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/EntityComponentMetaSystem.git ECMS
|
||||||
|
- run: cd ECMS && git checkout $GITHUB_REF_NAME
|
||||||
|
- run: cd ECMS && cmake -S src -B buildDebug -DCMAKE_BUILD_TYPE=Debug
|
||||||
|
- run: make -C ECMS/buildDebug && ./ECMS/buildDebug/UnitTests
|
Loading…
Reference in a new issue