Skip to content

adding enum members for ClusterSource #80

adding enum members for ClusterSource

adding enum members for ClusterSource #80

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
env:
Solution_Name: csharp/Microsoft.Azure.Databricks.Client.sln
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.x
- name: Restore
run: dotnet restore "$Solution_Name"
- name: Build
run: dotnet build --no-restore --configuration Release "$Solution_Name"
- name: Test
run: dotnet test "$Solution_Name" --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
- name: Package
run: dotnet pack "$Solution_Name" --no-build --configuration Release --verbosity Detailed
- name: Code Coverage Report
uses: irongut/[email protected]
with:
filename: coverage/**/coverage.cobertura.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '50 75'
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
code-coverage-results.md
**/bin/**