Skip to content

this will (probably) work #52

this will (probably) work

this will (probably) work #52

Workflow file for this run

name: Test Build
on: [ push, pull_request ]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'temurin'
cache: 'gradle'
- name: Get short commit hash
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Test
run: |
chmod +x gradlew
./gradlew test
- name: Build
run: |
chmod +x gradlew
./gradlew publishToMavenLocal