Skip to content

build(deps): bump MSTest.TestAdapter from 3.6.4 to 3.7.2 #1528

build(deps): bump MSTest.TestAdapter from 3.6.4 to 3.7.2

build(deps): bump MSTest.TestAdapter from 3.6.4 to 3.7.2 #1528

Workflow file for this run

name: Build and test
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ windows-latest, ubuntu-latest, macos-14 ]
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore Messaging.sln
- name: Build
run: dotnet build Messaging.sln --configuration Release --no-restore
- name: Unit tests
run: |
dotnet test "./test/Helsenorge.Messaging.Tests/Helsenorge.Messaging.Tests.csproj"
dotnet test "./test/Helsenorge.Registries.Tests/Helsenorge.Registries.Tests.csproj"
dotnet test "./test/Helsenorge.Messaging.AdminLib.Tests/Helsenorge.Messaging.AdminLib.Tests.csproj"