Skip to content

Update to Polypheny Prism driver and use BigDecimal instead of floats #111

Update to Polypheny Prism driver and use BigDecimal instead of floats

Update to Polypheny Prism driver and use BigDecimal instead of floats #111

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
ubuntu:
name: Ubuntu (JDK ${{ matrix.java }})
runs-on: ubuntu-latest
strategy:
matrix:
java: [11,17]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
chmod +x ./gradlew
./gradlew --no-daemon build zipAll
windows:
name: Windows (JDK ${{ matrix.java }})
runs-on: windows-latest
strategy:
matrix:
java: [11,17]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: 11
- name: Checkout
uses: actions/checkout@v2
- name: Build
shell: cmd
run: |
./gradlew --no-daemon build zipAll