From a1e49cc4c333dbb49a78f2f0312f19b312084414 Mon Sep 17 00:00:00 2001 From: Daniel Schauenberg Date: Tue, 9 Jan 2024 13:32:15 +0100 Subject: [PATCH] add unit test actions workflow --- .github/workflows/tests.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/tests.yaml diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml new file mode 100644 index 00000000..7080742f --- /dev/null +++ b/.github/workflows/tests.yaml @@ -0,0 +1,23 @@ +name: test + +on: + workflow_dispatch: + pull_request: + types: [opened, synchronize] + + +jobs: + unit: + name: unit + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: build + run: | + ./autogen.sh + ./configure --enable-coverage + + - name: run tests + run: make ci