Skip to content

Commit

Permalink
add setup and tear down tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
florianschoffke committed Feb 19, 2024
1 parent 4d938e6 commit 3060ba2
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,22 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'

# Install .NET runtime
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v2
with:
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@v3
with:
distribution: 'microsoft'
java-version: '17'

- name: Identify changed files
Expand Down Expand Up @@ -57,4 +70,5 @@ jobs:
SUSHI_ENABLED: false

- name: Cleanup
if: always()
run: rm -rf temp_folder

0 comments on commit 3060ba2

Please sign in to comment.