Update issue templates #32
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: setup-demo | |
on: [push] | |
jobs: | |
verify: | |
name: Verify Code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Maven | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8.0.292+10 | |
distribution: 'adopt' | |
- name: Cache Local Maven Repo | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}" | |
- name: Java-Relp-Server-Demo | |
run: | | |
git clone https://github.com/teragrep/java-relp-server-demo.git | |
cd java-relp-server-demo | |
mvn clean package | |
mkdir staging && cp target/*.jar staging | |
cd staging | |
java -jar java-relp-server-demo-jar-with-dependencies.jar & | |
- name: Compile Test | |
run: mvn clean package | |