Skip to content

Add baseline package validation #261

Add baseline package validation

Add baseline package validation #261

Workflow file for this run

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