Skip to content

chore(deps): bump xunit from 2.4.2 to 2.6.2 #270

chore(deps): bump xunit from 2.4.2 to 2.6.2

chore(deps): bump xunit from 2.4.2 to 2.6.2 #270

Workflow file for this run

name: .NET Core CI
on:
push:
jobs:
build:
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
dotnet: [ '6.0.x', '7.0.x' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run unit tests
run: |
dotnet test ./src/Pipedrive.net.Tests/Pipedrive.Tests.csproj
- name: Build project
run: |
dotnet build ./src/Pipedrive.net/Pipedrive.csproj