From 9f4db6b21905272609d6cd8f3a4658166b32ea40 Mon Sep 17 00:00:00 2001 From: Kyuhaku Date: Tue, 16 Apr 2024 05:00:47 +1200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..471bbfa --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: .NET Core + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: [ubuntu-latest] + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: 5.0.x + - run: dotnet restore + working-directory: Tests + - run: dotnet test --no-restore --verbosity normal + working-directory: Tests