diff --git a/.forgejo/workflows/units.yml b/.forgejo/workflows/units.yml new file mode 100644 index 0000000..825e474 --- /dev/null +++ b/.forgejo/workflows/units.yml @@ -0,0 +1,25 @@ +Name: Unit Tests + + +on: + push: + branches: [ 'master', 'main', 'release/**' ] + pull_request: + branches: [ '*' ] + +jobs: + unit_test: + runs-on: ubuntu-24.04 + + steps: + - uses: actions/checkout@v2 + with: + submodules: true + + - name: Build unit tests + run: | + make unit + + - name: Run unit tests + run: | + test/unit/unit