forked from praxis-live/praxiscore
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 881 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Test Suite
on:
[push, pull_request]
jobs:
build:
name: Build and test on ${{ matrix.os }}, JDK ${{ matrix.java }}
strategy:
matrix:
java: [ '21' ]
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: ./mvnw --batch-mode --update-snapshots verify
- name: Move and verify PraxisCORE
run: |
mv ./praxiscore-bin/target/praxiscore ./
./praxiscore/bin/praxis --show-environment
- name: Run Test Suite
run: ./praxiscore/bin/praxis -f ./testsuite/