update to net8.0-rc1 #480
Workflow file for this run
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
name: HealthChecks NPGSQL DB CI | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- src/HealthChecks.NpgSql/** | ||
- test/HealthChecks.Npgsql.Tests/** | ||
- test/_SHARED/** | ||
- .github/workflows/healthchecks_npgsql_ci.yml | ||
- .github/workflows/reusable_ci_workflow.yml | ||
- Directory.Build.props | ||
- Directory.Build.targets | ||
tags-ignore: | ||
- release-* | ||
- preview-* | ||
pull_request: | ||
branches: [ master ] | ||
paths: | ||
- src/HealthChecks.NpgSql/** | ||
- test/HealthChecks.Npgsql.Tests/** | ||
- test/_SHARED/** | ||
- .github/workflows/healthchecks_npgsql_ci.yml | ||
- .github/workflows/reusable_ci_workflow.yml | ||
- Directory.Build.props | ||
- Directory.Build.targets | ||
jobs: | ||
build: | ||
services: | ||
npgsql: | ||
image: postgres | ||
ports: | ||
- 8010:5432 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: Password12! | ||
uses: ./.github/workflows/reusable_ci_workflow.yml | ||
Check failure on line 40 in .github/workflows/healthchecks_npgsql_ci.yml GitHub Actions / HealthChecks NPGSQL DB CIInvalid workflow file
|
||
with: | ||
PROJECT_PATH: ./src/HealthChecks.NpgSql/HealthChecks.NpgSql.csproj | ||
TEST_PROJECT_PATH: ./test/HealthChecks.Npgsql.Tests/HealthChecks.Npgsql.Tests.csproj | ||
CODECOV_FLAGS: Npgsql |