Spinimax added #177
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
# This workflow will build a Java project with Ant | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant | |
name: Run Trials | |
on: | |
push: | |
branches: [ "master", "dev", "dev_clean"] | |
pull_request: | |
branches: [ "master", "dev", "dev_clean"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Build and Test with Ant | |
run: | | |
cd PlayerDesktop | |
export ANT_OPTS=-Xmx14g | |
ant clean test |