2024-01-12 05:06:14 +00:00
|
|
|
name: Run UnitTests
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-run-tests:
|
2024-01-22 02:12:58 +00:00
|
|
|
runs-on: any_archLinux
|
2024-01-12 05:06:14 +00:00
|
|
|
steps:
|
|
|
|
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/UDPConnection.git UDPC
|
|
|
|
- run: cd UDPC && git checkout $GITHUB_REF_NAME
|
|
|
|
- run: cd UDPC && cmake -S . -B buildDebug -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
- run: make -C UDPC/buildDebug && ./UDPC/buildDebug/UnitTest
|