hope im not a dumbass
This commit is contained in:
parent
bcd73bd0c9
commit
b209faab60
1 changed files with 6 additions and 1 deletions
7
.github/workflows/dotnet.yml
vendored
7
.github/workflows/dotnet.yml
vendored
|
@ -16,10 +16,15 @@ jobs:
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v1
|
||||||
with:
|
with:
|
||||||
dotnet-version: 5.0.x
|
dotnet-version: 3.1.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
run: dotnet build --no-restore
|
run: dotnet build --no-restore
|
||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-build --verbosity normal
|
run: dotnet test --no-build --verbosity normal
|
||||||
|
- name: capture build artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Build
|
||||||
|
path: RepoFullDownloader-Core/bin/Debug/netcoreapp3.1/
|
||||||
|
|
Loading…
Add table
Reference in a new issue