Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0 #159
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 InfluxDB CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- src/HealthChecks.InfluxDB/** | |
- test/HealthChecks.InfluxDB.Tests/** | |
- test/_SHARED/** | |
- .github/workflows/healthchecks_influxdb_ci.yml | |
- Directory.Build.props | |
- Directory.Build.targets | |
tags-ignore: | |
- release-* | |
- preview-* | |
pull_request: | |
branches: [ master ] | |
paths: | |
- src/HealthChecks.InfluxDB/** | |
- test/HealthChecks.InfluxDB.Tests/** | |
- test/_SHARED/** | |
- .github/workflows/healthchecks_influxdb_ci.yml | |
- Directory.Build.props | |
- Directory.Build.targets | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
- name: Restore | |
run: | | |
dotnet restore ./src/HealthChecks.InfluxDB/HealthChecks.InfluxDB.csproj && | |
dotnet restore ./test/HealthChecks.InfluxDB.Tests/HealthChecks.InfluxDB.Tests.csproj | |
- name: Check formatting | |
run: | | |
dotnet format --no-restore --verify-no-changes --severity warn ./src/HealthChecks.InfluxDB/HealthChecks.InfluxDB.csproj || (echo "Run 'dotnet format' to fix whitespace issues" && exit 1) && | |
dotnet format --no-restore --verify-no-changes --severity warn ./test/HealthChecks.InfluxDB.Tests/HealthChecks.InfluxDB.Tests.csproj || (echo "Run 'dotnet format' to fix analyzers issues" && exit 1) | |
- name: Build | |
run: | | |
dotnet build --no-restore ./src/HealthChecks.InfluxDB/HealthChecks.InfluxDB.csproj && | |
dotnet build --no-restore ./test/HealthChecks.InfluxDB.Tests/HealthChecks.InfluxDB.Tests.csproj | |
- name: Setup InfluxDB | |
uses: maikebing/influxdb-action@v5 | |
with: | |
influxdb_version: latest | |
influxdb_org: influxdata | |
influxdb_user: ci_user | |
influxdb_password: password | |
influxdb_bucket: dummy | |
- name: Test | |
run: > | |
dotnet test | |
./test/HealthChecks.InfluxDB.Tests/HealthChecks.InfluxDB.Tests.csproj | |
--no-restore | |
--no-build | |
--collect "XPlat Code Coverage" | |
--results-directory .coverage | |
-- | |
DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: InfluxDB | |
directory: .coverage |