Skip to content

chore(deps): bump xunit.runner.visualstudio from 2.4.5 to 2.5.0 #96

chore(deps): bump xunit.runner.visualstudio from 2.4.5 to 2.5.0

chore(deps): bump xunit.runner.visualstudio from 2.4.5 to 2.5.0 #96

Workflow file for this run

name: PR Build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
test-type: [ unit-tests, integration-tests ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
6.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ./
- name: Build
run: dotnet build --no-restore
working-directory: ./
- uses: ./.github/actions/ci
with:
type: ${{ matrix.test-type }}
project-id: ${{ secrets.PROJECT_ID }}