Skip to content

Commit

Permalink
Create dotnet48.yml
Browse files Browse the repository at this point in the history
attempting .net framework 4.8 tests with github actions
  • Loading branch information
jbtule committed Nov 2, 2023
1 parent f66a869 commit e2ee291
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/dotnet48.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build .net framework 48

on: [push]

jobs:
build:

runs-on: windows-2019
steps:

- uses: actions/checkout@v2

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1

- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5

- name: setup-msbuild
uses: microsoft/setup-msbuild@v1.1

- name: Restore Packages
run: nuget restore Dynamitey.sln

- name: Run vstests
uses: microsoft/vstest-action@v1.0.0
with:
testAssembly: Tests.dll
searchFolder: .\Tests\bin\Debug\net48\
runInParallel: true

0 comments on commit e2ee291

Please sign in to comment.