Skip to content

Update install scripts for PRISM-games. #31

Update install scripts for PRISM-games.

Update install scripts for PRISM-games. #31

Workflow file for this run

name: make-tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
java: [9, 11, 15]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- run: cd prism
- name: make tests
working-directory: ./prism
run: |
make
make unittests
make tests