Skip to content

Merge pull request #4 from skylight-hq/mcm/ecr-provider-fax #27

Merge pull request #4 from skylight-hq/mcm/ecr-provider-fax

Merge pull request #4 from skylight-hq/mcm/ecr-provider-fax #27

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