Skip to content

Bump xunit.runner.visualstudio from 2.5.3 to 2.5.4 in /src #80

Bump xunit.runner.visualstudio from 2.5.3 to 2.5.4 in /src

Bump xunit.runner.visualstudio from 2.5.3 to 2.5.4 in /src #80

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --no-restore
- name: Test
working-directory: ./src
run: dotnet test --no-restore --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx"
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: '**/*.trx'
retention-days: 1