From 2f77b22d93bcbddf8da2145c95f6c3ca8bc55336 Mon Sep 17 00:00:00 2001 From: cooolbros Date: Mon, 11 Apr 2022 16:44:33 +1000 Subject: [PATCH] Add Github Actions tests --- .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 0000000..3616233 --- /dev/null +++ b/.github/workflows/tests.yaml @@ -0,0 +1,23 @@ +name: tests + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test: + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install .NET Core + uses: actions/setup-dotnet@v2 + with: + dotnet-version: 6.0.x + + - name: Run Unit Tests + run: dotnet test src\hud-merger.sln