Bump xunit.runner.visualstudio from 2.5.0 to 2.5.7 #109
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: Build | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '6.0', '7.0' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -f net${{ matrix.dotnet-version }} | |
- name: Test | |
run: dotnet test BitPayUnitTest --no-restore --verbosity n -f net${{ matrix.dotnet-version }} | |
build-and-test-48: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup MSBuild path | |
uses: microsoft/[email protected] | |
with: | |
dotNetVersion: '4.8.x' | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -f net48 | |
- name: Test | |
run: dotnet test BitPayUnitTest --no-restore --verbosity n -f net48 |