-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Keegan Caruso <[email protected]>
- Loading branch information
1 parent
ee6bfe7
commit c1be3d6
Showing
2 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,18 +23,23 @@ jobs: | |
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 | ||
uses: actions/[email protected] | ||
|
||
- name: Setup .NET 8.0.x | ||
uses: actions/setup-dotnet@v2.1.0 | ||
uses: actions/setup-dotnet@v4.0.0 | ||
with: | ||
dotnet-version: 8.0.100-rc.1.23463.5 | ||
|
||
dotnet-version: 8.0.x | ||
|
||
- name: update versions | ||
run: .\updateAssemblyInfo.ps1 | ||
|
||
# Build and test | ||
- name: Restore packages | ||
run: dotnet restore Wilson.sln | ||
|
||
- name: Run the tests | ||
run: dotnet test Wilson.sln | ||
|
||
# Run baseline package validation | ||
- name: Pack | ||
run: .\pack.ps1 |