fix: switch to the Cloudant fork of Lucene 4.6.1 #200
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven and Erlang | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 7 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.7 | |
- name: Set up Erlang | |
uses: gleam-lang/[email protected] | |
with: | |
otp-version: '23.3.1' | |
- name: Start epmd daemon | |
run: epmd -daemon | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml |