-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump codecov/codecov-action from 3 to 4
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
b800212
commit 3f17120
Showing
5 changed files
with
244 additions
and
244 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,35 +1,35 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v3 | ||
name: ci | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v4 |
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,52 +1,52 @@ | ||
name: mysql | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
db: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: [8.0, 8.1, 8.2, latest] | ||
services: | ||
mysql: | ||
image: mysql:${{ matrix.tag }} | ||
env: | ||
MYSQL_ROOT_PASSWORD: Schematic1234 | ||
MYSQL_DATABASE: schematic | ||
options: >- | ||
--health-cmd "mysqladmin ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 3306:3306 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src/SJP.Schematic.MySql.Tests | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src/SJP.Schematic.MySql.Tests | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src/SJP.Schematic.MySql.Tests | ||
env: | ||
ConnectionStrings__MySql_TestDb: Server=localhost; Port=3306; Database=schematic; Uid=root; Pwd=Schematic1234; ConnectionTimeout=2 | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v3 | ||
name: mysql | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
db: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: [8.0, 8.1, 8.2, latest] | ||
services: | ||
mysql: | ||
image: mysql:${{ matrix.tag }} | ||
env: | ||
MYSQL_ROOT_PASSWORD: Schematic1234 | ||
MYSQL_DATABASE: schematic | ||
options: >- | ||
--health-cmd "mysqladmin ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 3306:3306 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src/SJP.Schematic.MySql.Tests | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src/SJP.Schematic.MySql.Tests | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src/SJP.Schematic.MySql.Tests | ||
env: | ||
ConnectionStrings__MySql_TestDb: Server=localhost; Port=3306; Database=schematic; Uid=root; Pwd=Schematic1234; ConnectionTimeout=2 | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v4 |
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,54 +1,54 @@ | ||
name: oracle | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
db: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: [11, 18, 21, latest] | ||
services: | ||
oracle: | ||
image: gvenzl/oracle-xe:${{ matrix.tag }} | ||
env: | ||
ORACLE_PASSWORD: schematic_root | ||
ORACLE_DATABASE: schematic | ||
APP_USER: schematic | ||
APP_USER_PASSWORD: schematic | ||
options: >- | ||
--health-cmd healthcheck.sh | ||
--health-interval 20s | ||
--health-timeout 10s | ||
--health-retries 10 | ||
ports: | ||
- 1521:1521 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src/SJP.Schematic.Oracle.Tests | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src/SJP.Schematic.Oracle.Tests | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src/SJP.Schematic.Oracle.Tests | ||
env: | ||
ConnectionStrings__Oracle_TestDb: Data Source=localhost/XEPDB1; User Id=schematic; Password=schematic | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v3 | ||
name: oracle | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
db: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: [11, 18, 21, latest] | ||
services: | ||
oracle: | ||
image: gvenzl/oracle-xe:${{ matrix.tag }} | ||
env: | ||
ORACLE_PASSWORD: schematic_root | ||
ORACLE_DATABASE: schematic | ||
APP_USER: schematic | ||
APP_USER_PASSWORD: schematic | ||
options: >- | ||
--health-cmd healthcheck.sh | ||
--health-interval 20s | ||
--health-timeout 10s | ||
--health-retries 10 | ||
ports: | ||
- 1521:1521 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src/SJP.Schematic.Oracle.Tests | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src/SJP.Schematic.Oracle.Tests | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src/SJP.Schematic.Oracle.Tests | ||
env: | ||
ConnectionStrings__Oracle_TestDb: Data Source=localhost/XEPDB1; User Id=schematic; Password=schematic | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v4 |
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,51 +1,51 @@ | ||
name: postgres | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
db: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: [10, 11, 12, 13, 14, 15, 16, latest] | ||
services: | ||
postgres: | ||
image: postgres:${{ matrix.tag }} | ||
env: | ||
POSTGRES_PASSWORD: postgres | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src/SJP.Schematic.PostgreSql.Tests | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src/SJP.Schematic.PostgreSql.Tests | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src/SJP.Schematic.PostgreSql.Tests | ||
env: | ||
ConnectionStrings__PostgreSql_TestDb: Server=localhost; Port=5432; Database=postgres; User Id=postgres; Password=postgres; Timeout=2 | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v3 | ||
name: postgres | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
db: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tag: [10, 11, 12, 13, 14, 15, 16, latest] | ||
services: | ||
postgres: | ||
image: postgres:${{ matrix.tag }} | ||
env: | ||
POSTGRES_PASSWORD: postgres | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
working-directory: src/SJP.Schematic.PostgreSql.Tests | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
working-directory: src/SJP.Schematic.PostgreSql.Tests | ||
|
||
- name: Test | ||
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | ||
working-directory: src/SJP.Schematic.PostgreSql.Tests | ||
env: | ||
ConnectionStrings__PostgreSql_TestDb: Server=localhost; Port=5432; Database=postgres; User Id=postgres; Password=postgres; Timeout=2 | ||
|
||
- name: Coverage | ||
uses: codecov/codecov-action@v4 |
Oops, something went wrong.