Skip to content

Commit

Permalink
Updated github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ieuna committed May 23, 2024
1 parent 4d2f1d6 commit 758ab82
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
push:
branches:
- main
- backend-service
pull_request:
branches:
- main
Expand Down Expand Up @@ -58,4 +59,19 @@ jobs:
- name: "Validate Terrform format"
working-directory: mxd
run: |-
terraform fmt -check -recursive
terraform fmt -check -recursive
End-To-End-Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'

- name: Change directory to backend-service and run tests
run: ./gradlew test
working-directory: mxd/backend-service

0 comments on commit 758ab82

Please sign in to comment.