fix: application.yaml #11
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: Build dispatcher module | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: [ .github/workflows/dispatcher.yaml, dispatcher/** ] | |
pull_request: | |
branches: [ master ] | |
paths: [ .github/workflows/dispatcher.yaml, dispatcher/** ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Run Build | |
run: gradle clean build -p ./dispatcher |