Skip to content

Bump xunit.runner.visualstudio from 2.5.0 to 2.5.1 (#22) #57

Bump xunit.runner.visualstudio from 2.5.0 to 2.5.1 (#22)

Bump xunit.runner.visualstudio from 2.5.0 to 2.5.1 (#22) #57

Workflow file for this run

name: Master Build
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
# Stop wasting time caching packages
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# Disable sending usage data to Microsoft
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: Testing ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.306
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal