Adjust actions to only test net8 and net9 #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
8.0.X | |
9.0.X | |
- name: Install dependencies | |
run: dotnet msbuild -target:restore .\build.proj | |
- name: Build | |
run: dotnet msbuild -target:solution .\build.proj | |
- name: Unit Tests | |
run: dotnet msbuild -target:unittests .\build.proj | |
- name: Story Tests | |
run: dotnet msbuild -target:storytests .\build.proj |