From 443d85974a49398cb64bec87a11550d7ef12e006 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 5 Aug 2025 07:49:48 +0200 Subject: [PATCH] Create actions pipeline --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..57cb31d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: Run Unit and Integration tests +on: [push] +jobs: + Build-And-Test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup .NET Core SDK + uses: actions/setup-dotnet@v4 + - name: Test with the dotnet CLI + run: dotnet test