Moved delegates to seperate file. (#2606) #759
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: | |
TargetNet9: True | |
TargetNet8: True | |
jobs: | |
build: | |
runs-on: windows-latest | |
continue-on-error: true | |
name: Wilson GitHub Action Test | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.1 | |
- name: Setup .NET 6.0.x | |
uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: 6.0.x | |
- name: Setup .NET 8.0.x | |
uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup .NET 9.0.x | |
uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: 9.0.100-preview.2.24157.14 | |
- name: Run the tests | |
run: dotnet test Wilson.sln | |
# Run baseline package validation | |
- name: Pack | |
run: dotnet pack Product.proj --no-restore --no-build |