chore(deps): update dependency bogus to v35 #56
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: CI - Code | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- .github/workflows/ci-code.yml | |
- src/** | |
jobs: | |
verify_codebase: | |
name: Verify Codebase | |
runs-on: ubuntu-latest | |
# Assign permissions for unit tests to be reported. | |
# See https://github.com/dorny/test-reporter/issues/168 | |
permissions: | |
statuses: write | |
checks: write | |
contents: write | |
pull-requests: write | |
steps: | |
# Checkout code | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Install .NET | |
- name: Install .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel | |
# Build Solution | |
- name: Build Solution | |
run: dotnet build src/Promitor.sln --configuration release | |
# Run Automated Tests | |
- name: Run Unit Tests | |
run: dotnet test src/Promitor.Tests.Unit/Promitor.Tests.Unit.csproj --logger "trx;LogFileName=test-results.trx" | |
# Provide Unit Test Results | |
- name: Report Unit Test Results | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() | |
with: | |
name: .NET Unit Tests | |
path: src/**/test-results.trx | |
reporter: dotnet-trx |