Skip to content

chore(deps): bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.2 (#157) #258

chore(deps): bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.2 (#157)

chore(deps): bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.2 (#157) #258

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