-
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
1,829 additions
and
1,081 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,25 @@ | ||
name: Ubuntu x64 | ||
|
||
on: [push] | ||
on: [ push ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core 3.1 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 3.1.x | ||
|
||
- name: Setup .NET Core 6.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: Setup .NET Core 8.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install Downloader Dependencies | ||
run: dotnet restore ./src/Downloader/Downloader.csproj | ||
|
||
- name: Build Downloader Project | ||
run: dotnet build ./src/Downloader/Downloader.csproj | ||
|
||
- name: Install Downloader.DummyHttpServer Dependencies | ||
run: dotnet restore ./src/Downloader.DummyHttpServer/Downloader.DummyHttpServer.csproj | ||
|
||
- name: Build Downloader.DummyHttpServer Project | ||
run: dotnet build ./src/Downloader.DummyHttpServer/Downloader.DummyHttpServer.csproj | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Downloader.Test Dependencies | ||
run: dotnet restore ./src/Downloader.Test/Downloader.Test.csproj | ||
- name: Setup .NET Core 8.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Build Downloader.Test Project | ||
run: dotnet build ./src/Downloader.Test/Downloader.Test.csproj | ||
- name: Build solution | ||
run: dotnet build -c Release ./src --verbosity minimal | ||
|
||
- name: Test | ||
run: dotnet test ./src/Downloader.Test/Downloader.Test.csproj --no-build --verbosity detailed | ||
- name: Run tests | ||
run: dotnet test -c Release ./src --verbosity normal --no-build --no-restore |
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 |
---|---|---|
@@ -1,45 +1,25 @@ | ||
name: Windows x64 | ||
|
||
on: [push] | ||
on: [ push ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core 3.1 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 3.1.x | ||
|
||
- name: Setup .NET Core 6.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: Setup .NET Core 8.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install Downloader Dependencies | ||
run: dotnet restore ./src/Downloader/Downloader.csproj | ||
|
||
- name: Build Downloader Project | ||
run: dotnet build ./src/Downloader/Downloader.csproj | ||
|
||
- name: Install Downloader.DummyHttpServer Dependencies | ||
run: dotnet restore ./src/Downloader.DummyHttpServer/Downloader.DummyHttpServer.csproj | ||
|
||
- name: Build Downloader.DummyHttpServer Project | ||
run: dotnet build ./src/Downloader.DummyHttpServer/Downloader.DummyHttpServer.csproj | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Downloader.Test Dependencies | ||
run: dotnet restore ./src/Downloader.Test/Downloader.Test.csproj | ||
- name: Setup .NET Core 8.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Build Downloader.Test Project | ||
run: dotnet build ./src/Downloader.Test/Downloader.Test.csproj | ||
- name: Build solution | ||
run: dotnet build -c Release ./src --verbosity minimal | ||
|
||
- name: Test | ||
run: dotnet test ./src/Downloader.Test/Downloader.Test.csproj --no-build --verbosity detailed | ||
- name: Run tests | ||
run: dotnet test -c Release ./src --verbosity normal --no-build --no-restore |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
2 changes: 2 additions & 0 deletions
2
src/Downloader.DummyHttpServer/DummyApiExceptionFilterAttribute.cs
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
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
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
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
Oops, something went wrong.