Skip to content

Added link to Redis Stack implementation. #11

Added link to Redis Stack implementation.

Added link to Redis Stack implementation. #11

Workflow file for this run

name: Java CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
java: [ 8, 11 ]
experimental: [ false ]
# include:
# - java: 18-ea
# os: ubuntu-latest
# experimental: true
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V --no-transfer-progress clean test