Skip to content

Feat/only int maxallowed #194

Feat/only int maxallowed

Feat/only int maxallowed #194

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Install dependencies needed
run: $GITHUB_WORKSPACE/install_dependencies.sh
- name: Build with Maven
run: ./mvnw --batch-mode clean install