update comp targets and require jar #13
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 with mvn | |
on: | |
push: | |
branches: [ main ] | |
paths: 'DeFi-Data-Engine/**' | |
pull_request: | |
branches: [ main ] | |
paths: 'DeFi-Data-Engine/**' | |
workflow_dispatch: | |
jobs: | |
buildDataEngine: | |
runs-on: [ self-hosted ] | |
defaults: | |
run: | |
working-directory: "DeFi-Data-Engine/DeFi Data Engine/" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
buildRestAPI: | |
runs-on: [ self-hosted ] | |
defaults: | |
run: | |
working-directory: "DeFi-Data-Engine/Rest Application/" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |