Skip to content

fix: more standalone build fixes #70

fix: more standalone build fixes

fix: more standalone build fixes #70

Workflow file for this run

name: Test fhir-converter
on:
pull_request:
push:
branches:
- main
jobs:
unit-test-dotnet-fhir-converter:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
- name: Run tests
run: dotnet test --filter FullyQualifiedName~Converter.UnitTests
functional-test-dotnet-fhir-converter:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: "6.0.x"
- name: Run tests
run: dotnet test --filter FullyQualifiedName~Converter.FunctionalTests