-
-
Notifications
You must be signed in to change notification settings - Fork 271
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
1 parent
52ce1df
commit a2d0416
Showing
26 changed files
with
234 additions
and
158 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
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
29 changes: 14 additions & 15 deletions
29
.github/workflows/pr-check.yml → .github/workflows/linux-6.0.yml
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,31 +1,30 @@ | ||
name: Pull Request Checks | ||
name: Linux (.NET 6.0) | ||
|
||
on: [workflow_dispatch] | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
jobs: | ||
os-tests: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout repo | ||
uses: actions/checkout@v2 | ||
- name: setup dotnet 5.0.x | ||
- name: setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 5.0.x | ||
- name: setup dotnet 3.1.x | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 3.1.x | ||
dotnet-version: '6.0' | ||
include-prerelease: true | ||
env: | ||
DOTNET_INSTALL_DIR: /usr/share/dotnet | ||
- name: test Finbuckle.MultiTenanant | ||
run: dotnet test | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.Test | ||
- name: test Finbuckle.MultiTenanant.AspNetCore | ||
run: dotnet test | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.AspNetCore.Test | ||
- name: test Finbuckle.MultiTenanant.EntityFrameworkCore | ||
run: dotnet test | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.EntityFrameworkCore.Test | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: MacOS (.NET 6.0) | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
jobs: | ||
os-tests: | ||
runs-on: macos-latest | ||
steps: | ||
- name: checkout repo | ||
uses: actions/checkout@v2 | ||
- name: setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '6.0' | ||
include-prerelease: true | ||
- name: test Finbuckle.MultiTenanant | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.Test | ||
- name: test Finbuckle.MultiTenanant.AspNetCore | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.AspNetCore.Test | ||
- name: test Finbuckle.MultiTenanant.EntityFrameworkCore | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.EntityFrameworkCore.Test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Windows (.NET 6.0) | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
jobs: | ||
os-tests: | ||
runs-on: windows-latest | ||
steps: | ||
- name: checkout repo | ||
uses: actions/checkout@v2 | ||
- name: setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '6.0' | ||
include-prerelease: true | ||
env: | ||
DOTNET_INSTALL_DIR: 'C:\Program Files\dotnet' | ||
- name: test Finbuckle.MultiTenanant | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.Test | ||
- name: test Finbuckle.MultiTenanant.AspNetCore | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.AspNetCore.Test | ||
- name: test Finbuckle.MultiTenanant.EntityFrameworkCore | ||
run: dotnet test -f net6.0 | ||
working-directory: ./test/Finbuckle.MultiTenant.EntityFrameworkCore.Test |
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.