Bump xunit.runner.visualstudio from 2.5.0 to 2.5.4 #429
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: 'Continuous Integration Build' | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: "Build and run tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET 7.0 SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.x | |
include-prerelease: false | |
- name: Setup .NET 6.0 SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.x | |
include-prerelease: false | |
- name: Setup .NET 3.1 SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.x | |
- name: Build Project | |
run: dotnet build --configuration Release | |
- name: Run Tests | |
run: dotnet test --no-build --configuration Release --verbosity normal --logger "trx;LogFileName=test-results.trx" --collect:"XPlat Code Coverage" | |
- name: Codecov | |
uses: codecov/codecov-action@v1 | |
- name: ReportGenerator | |
uses: danielpalme/ReportGenerator-GitHub-Action@4.8.9 | |
with: | |
reports: Functions.Tests/TestResults/**/coverage.cobertura.xml | |
targetdir: 'coveragereport' # REQUIRED # The directory where the generated report should be saved. | |
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary | |
assemblyfilters: '+*' # Optional list of assemblies that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed. | |
classfilters: '+*' # Optional list of classes that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed. | |
filefilters: '+*' # Optional list of files that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed. | |
verbosity: 'Info' # The verbosity level of the log messages. Values: Verbose, Info, Warning, Error, Off | |
tag: '${{ github.run_number }}_${{ github.run_id }}' # Optional tag or build version. | |
toolpath: 'reportgeneratortool' # Default directory for installing the dotnet tool. | |
- name: Upload coverage report artifact | |
uses: actions/upload-artifact@v2.2.3 | |
with: | |
name: CoverageReport # Artifact name | |
path: coveragereport # Directory containing files to upload | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v2 # upload test results | |
if: always() # always run this step | |
with: | |
name: test-results | |
path: Functions.Tests/TestResults/test-results.trx |