Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

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

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

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

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