Skip to content

build(deps): bump Newtonsoft.Json and Microsoft.NET.Test.Sdk #593

build(deps): bump Newtonsoft.Json and Microsoft.NET.Test.Sdk

build(deps): bump Newtonsoft.Json and Microsoft.NET.Test.Sdk #593

Workflow file for this run

name: Build Release
on:
push:
branches:
- '*'
paths:
- 'src/**'
- 'tests/**'
pull_request:
branches:
- '*'
paths:
- 'src/**'
- 'tests/**'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Build
run: |
dotnet build "src/fhir-tool-core/fhir-tool-core.csproj" --configuration Release
- name: Test
run: dotnet test tests\fhir-tool-core-tests\fhir-tool-core-tests.csproj --no-restore --verbosity normal