feat(LT-5791): [MarginTrading] Add assembly load logger #173
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: .NET | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
workflow_dispatch: | |
inputs: | |
configuration: | |
description: "Build configuration" | |
required: true | |
default: "Release" | |
branches: | |
description: "Branches to build" | |
required: true | |
default: "master" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "Branches: ${{ github.event.inputs.branches }}" | |
echo "Configuration: ${{ github.event.inputs.configuration }}" | |
echo "Event name: ${{ github.event_name }}" | |
echo "Event ref: ${{ github.event.ref }}" | |
echo "Environment: ${{ github.event.environment }}" | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Checkout NuGet config | |
uses: actions/checkout@v4 | |
with: | |
repository: LykkeBusiness/.github | |
path: LykkeBusinessTools | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
- name: Restore dependencies | |
run: dotnet restore --configfile LykkeBusinessTools/config/snow/nuget.config | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
run: dotnet test --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage | |
- name: Code Coverage Report | |
uses: irongut/[email protected] | |
with: | |
filename: coverage/**/coverage.cobertura.xml | |
badge: true | |
fail_below_min: false | |
format: markdown | |
hide_branch_rate: false | |
hide_complexity: false | |
indicators: true | |
output: both | |
thresholds: "10 20" | |
- name: Add Coverage PR Comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' | |
with: | |
recreate: true | |
path: code-coverage-results.md |