Added workflow to run tests in pr

This commit is contained in:
Darth Affe 2024-08-11 15:48:38 +02:00
parent 817b4bcb28
commit 862f1eb1f8

25
.github/workflows/pr_verify.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: PR-Verify
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release /p:Version=0.0.0
- name: Test
run: dotnet test --no-build --verbosity normal --configuration Release