Create dotnet-desktop.yml #1
1 changed files with 6 additions and 3 deletions
9
.github/workflows/dotnet-desktop.yml
vendored
9
.github/workflows/dotnet-desktop.yml
vendored
|
|
@ -8,7 +8,7 @@ jobs:
|
|||
runs-on: windows-latest
|
||||
strategy:
|
||||
matrix:
|
||||
dotnet-version: ['7.0', '7.0.x' ]
|
||||
dotnet-version: ['7.0.x' ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
@ -20,5 +20,8 @@ jobs:
|
|||
run: dotnet restore
|
||||
- name: Build
|
||||
run: dotnet build --configuration Release --no-restore
|
||||
- name: Test
|
||||
run: dotnet test --no-restore --verbosity normal
|
||||
- name: Archive build results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: build-result
|
||||
path: ./bin/
|
||||
|
|
|
|||
Loading…
Reference in a new issue