Merge pull request #2 from DarthAffe/PRVerifyWorkflow

Added workflow to run tests in pr
This commit is contained in:
DarthAffe 2024-08-11 15:48:55 +02:00 committed by GitHub
commit c93463fc7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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