diff --git a/.gitea/workflows/cpp.yml b/.gitea/workflows/cpp.yml new file mode 100644 index 0000000..531bbac --- /dev/null +++ b/.gitea/workflows/cpp.yml @@ -0,0 +1,16 @@ +name: C/C++ CI + +on: [push] + +jobs: + ubuntu-build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2.0.0 + - name: Build project + uses: nicledomaS/cmake_build_action@v1.4 + with: + submodule_update: ON + run_tests: ON + unit_test_build: -Dtest=ON