-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusted code due to breaking change in EF 9
- Loading branch information
Showing
28 changed files
with
268 additions
and
238 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,39 +1,41 @@ | ||
name: CI | ||
|
||
on: | ||
push | ||
|
||
env: | ||
UseSqlServerContainer: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: install .NET Core 8 SDK | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 8.0.x | ||
include-prerelease: false | ||
|
||
- name: checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: dotnet restore | ||
run: dotnet restore | ||
|
||
- name: build | ||
run: dotnet build --configuration Release --no-restore | ||
|
||
- name: test | ||
run: dotnet test --configuration Release --no-build | ||
|
||
- name: test results | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
id: test-results | ||
if: always() | ||
with: | ||
check_name: tests results | ||
trx_files: "**/test-results/**/*.trx" | ||
name: CI | ||
|
||
on: | ||
push | ||
|
||
env: | ||
UseSqlServerContainer: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: install .NET Core 8/9 SDKs | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
include-prerelease: false | ||
dotnet-version: | | ||
8.0.x | ||
9.0.x | ||
- name: checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: dotnet restore | ||
run: dotnet restore | ||
|
||
- name: build | ||
run: dotnet build --configuration Release --no-restore | ||
|
||
- name: test | ||
run: dotnet test --configuration Release --no-build | ||
|
||
- name: test results | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
id: test-results | ||
if: always() | ||
with: | ||
check_name: tests results | ||
trx_files: "**/test-results/**/*.trx" |
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
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.