Skip to content

added objectives (fix partially #5, fix #37) #24

added objectives (fix partially #5, fix #37)

added objectives (fix partially #5, fix #37) #24

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'jetbrains'
java-version: '17'
- name: chmod +x gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build
- name: Upload JAR artifacts
uses: actions/upload-artifact@v4
with:
path: '*/build/libs/*.jar'