From 90497de12b7f6c931413f33f3df8d45bb8d9f7fe Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 14 Nov 2024 00:26:43 +0100 Subject: [PATCH] Renamed dir --- .forgejo/workflows/units.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .forgejo/workflows/units.yml 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