feature: added updated API calls #47
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 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up JDK 23" | |
uses: oracle-actions/setup-java@v1 | |
with: | |
website: oracle.com | |
java-version: '23' | |
- name: "Install prerequisites" | |
run: | | |
make prepare | |
- name: "Linter" | |
run: | | |
make lint | |
- name: "Build API Server" | |
run: | | |
make build-api-server | |
- name: "Build CLI" | |
run: | | |
make build-cli |