Skip to content

chore(deps): bump xunit.runner.visualstudio from 2.4.3 to 2.5.1 #2

chore(deps): bump xunit.runner.visualstudio from 2.4.3 to 2.5.1

chore(deps): bump xunit.runner.visualstudio from 2.4.3 to 2.5.1 #2

Workflow file for this run

name: "CI Build"
on:
workflow_dispatch:
pull_request:
branches: [ 'main' ]
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: Test
run: dotnet test --verbosity normal --logger "trx;LogFileName=test-results.trx"
- uses: actions/upload-artifact@v2
if: success() || failure()
with:
name: test-results-${{ matrix.project-name }}
path: '**/test-results.trx'