Updates for BaseX version 10+: Remove use of db:chop option which was… #19
Workflow file for this run
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
name: CI | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
BASEX_VERSION: ${{ matrix.basex }} | |
strategy: | |
matrix: | |
java: ["8", "17"] | |
basex: ["9.7", "9.7.3", "11.5"] | |
exclude: | |
- basex: "11.5" | |
java: "8" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
architecture: x64 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Run tests | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test |