Skip to content

feat: Add termination characters and ability to reload config at runtime #10

feat: Add termination characters and ability to reload config at runtime

feat: Add termination characters and ability to reload config at runtime #10

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout project source code
uses: actions/checkout@v2
- name: Cache Maven Dependencies
uses: actions/cache@v1
with:
path: ~/.m2 # maven dependencies are stored in `~/.m2` on Linux
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build
run: mvn clean install