generated from dailydevops/dotnet-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: further sql healthchecks (#19)
* feat: Added MySql Checks based on `MySql.Data` * fix: Corrected package description * feat: Added MySql Checks based on `MySqlConnector` * ci: Added missing Solution filter and package pipelines * ci: set `disableCodeQL: true` for package pipelines * chore: Unnecessary `usings` removed * chore: Simplified Database usages * feat: Added SQLite checks * feat: Added Oracle Database checks * chore: Upgraded nuget packages * fix: Set test culture * fix: Enabled `RuntimeHostConfigurationOption` for SQLite project * chore: Added UnitTests for Oracle * chore: Added invariant `SetCulture` to all IntegrationTests * feat: Added `PostgreSql` checks * docs: Updated package READMEs
- Loading branch information
Showing
125 changed files
with
4,998 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "Package: NetEvolve.HealthChecks.MySql.Connector" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- src/HealthChecks.Shared/**/* | ||
- src/HealthChecks.MySql.Connector/**/* | ||
|
||
jobs: | ||
all: | ||
name: Build & Tests | ||
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@main | ||
with: | ||
disableCodeQL: true | ||
disablePublish: ${{ vars.NE_NUGET_PUBLISH == 'false' }} | ||
enableSonarQube: true | ||
dotnet-logging: ${{ inputs.dotnet-logging }} | ||
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }} | ||
dotnet-quality: ${{ vars.NE_DOTNET_QUALITY }} | ||
dotnet-testfilter: ${{ vars.NE_DOTNET_TESTFILTER }} | ||
solution: ./src/HealthChecks.MySql.Connector/HealthChecks.MySql.Connector.slnf | ||
secrets: inherit |
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,23 @@ | ||
name: "Package: NetEvolve.HealthChecks.MySql" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- src/HealthChecks.Shared/**/* | ||
- src/HealthChecks.MySql/**/* | ||
|
||
jobs: | ||
all: | ||
name: Build & Tests | ||
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@main | ||
with: | ||
disableCodeQL: true | ||
disablePublish: ${{ vars.NE_NUGET_PUBLISH == 'false' }} | ||
enableSonarQube: true | ||
dotnet-logging: ${{ inputs.dotnet-logging }} | ||
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }} | ||
dotnet-quality: ${{ vars.NE_DOTNET_QUALITY }} | ||
dotnet-testfilter: ${{ vars.NE_DOTNET_TESTFILTER }} | ||
solution: ./src/HealthChecks.MySql/HealthChecks.MySql.slnf | ||
secrets: inherit |
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,22 @@ | ||
name: "Package: NetEvolve.HealthChecks.Npgsql" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- src/HealthChecks.Shared/**/* | ||
- src/HealthChecks.Npgsql/**/* | ||
|
||
jobs: | ||
all: | ||
name: Build & Tests | ||
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@main | ||
with: | ||
disablePublish: ${{ vars.NE_NUGET_PUBLISH == 'false' }} | ||
enableSonarQube: true | ||
dotnet-logging: ${{ inputs.dotnet-logging }} | ||
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }} | ||
dotnet-quality: ${{ vars.NE_DOTNET_QUALITY }} | ||
dotnet-testfilter: ${{ vars.NE_DOTNET_TESTFILTER }} | ||
solution: ./src/HealthChecks.Npgsql/HealthChecks.Npgsql.slnf | ||
secrets: inherit |
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,22 @@ | ||
name: "Package: NetEvolve.HealthChecks.Oracle" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- src/HealthChecks.Shared/**/* | ||
- src/HealthChecks.Oracle/**/* | ||
|
||
jobs: | ||
all: | ||
name: Build & Tests | ||
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@main | ||
with: | ||
disablePublish: ${{ vars.NE_NUGET_PUBLISH == 'false' }} | ||
enableSonarQube: true | ||
dotnet-logging: ${{ inputs.dotnet-logging }} | ||
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }} | ||
dotnet-quality: ${{ vars.NE_DOTNET_QUALITY }} | ||
dotnet-testfilter: ${{ vars.NE_DOTNET_TESTFILTER }} | ||
solution: ./src/HealthChecks.Oracle/HealthChecks.Oracle.slnf | ||
secrets: inherit |
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,23 @@ | ||
name: "Package: NetEvolve.HealthChecks.SQLite" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- src/HealthChecks.Shared/**/* | ||
- src/HealthChecks.SQLite/**/* | ||
|
||
jobs: | ||
all: | ||
name: Build & Tests | ||
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@main | ||
with: | ||
disableCodeQL: true | ||
disablePublish: ${{ vars.NE_NUGET_PUBLISH == 'false' }} | ||
enableSonarQube: true | ||
dotnet-logging: ${{ inputs.dotnet-logging }} | ||
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }} | ||
dotnet-quality: ${{ vars.NE_DOTNET_QUALITY }} | ||
dotnet-testfilter: ${{ vars.NE_DOTNET_TESTFILTER }} | ||
solution: ./src/HealthChecks.SQLite/HealthChecks.SQLite.slnf | ||
secrets: inherit |
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.