PHDO-429 - Koin module, injection, and health checks refactoring #165
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI - GraphQL Service" | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- pstatus-graphql-ktor/** | |
defaults: | |
run: | |
working-directory: pstatus-graphql-ktor/ | |
jobs: | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Run Gradle Test | |
run: ./gradlew test |