Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzautke authored Mar 18, 2024
1 parent 6d841fc commit 6b94be6
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ name: CI (FHIR Validation)
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
branches: [ v3.0 ]
pull_request:
branches: [ master ]
branches: [ v3.0 ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -24,22 +24,23 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

# Install .NET runtime
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v1.7.2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.x
dotnet-version: '6.0.x'

# Install Java runtime (only needed if you want to run the offical HL7 Java validator)
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: 'microsoft'
java-version: '21'

- name: Firely.Terminal (GitHub Actions)
uses: FirelyTeam/firely-terminal-pipeline@v0.3.1
uses: FirelyTeam/firely-terminal-pipeline@v0.4.1
with:
PATH_TO_CONFORMANCE_RESOURCES: terminologie/ValueSets
DOTNET_VALIDATION_ENABLED: true
Expand Down

0 comments on commit 6b94be6

Please sign in to comment.