Add baseline package validation #253
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: .NET Core | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
branches: | |
- dev | |
env: | |
TargetNet8: True | |
jobs: | |
build: | |
runs-on: windows-latest | |
continue-on-error: true | |
name: Wilson GitHub Action Test | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup .NET 6.0.301 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 6.0.301 | |
- name: Setup .NET 8.0.x | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.100-rc.1.23463.5 | |
# Build and test | |
- name: Restore packages | |
run: dotnet restore Wilson.sln | |
- name: Run the tests | |
run: dotnet test Wilson.sln |