Update dotnet-desktop.yml
This commit is contained in:
parent
58d4de3232
commit
88c26f29dc
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
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
dotnet-version: ['7.0', '7.0.x' ]
|
dotnet-version: ['7.0.x' ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
@ -20,5 +20,8 @@ jobs:
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
run: dotnet build --configuration Release --no-restore
|
run: dotnet build --configuration Release --no-restore
|
||||||
- name: Test
|
- name: Archive build results
|
||||||
run: dotnet test --no-restore --verbosity normal
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: build-result
|
||||||
|
path: ./bin/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue