Skip to content

Bump xunit.runner.visualstudio from 2.4.5 to 2.5.1 #506

Bump xunit.runner.visualstudio from 2.4.5 to 2.5.1

Bump xunit.runner.visualstudio from 2.4.5 to 2.5.1 #506

name: build and test
on:
push:
pull_request:
branches: [ master,dev ]
paths:
- '**.cs'
- '**.csproj'
env:
DOTNET_VERSION: '6.0' # The .NET SDK version to use
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install FAKE
run: dotnet tool install fake-cli -g
- name: Run FAKE
working-directory: build
run: fake run build.fsx --target "Default"