Skip to content

Fix rift island not being detected #12

Fix rift island not being detected

Fix rift island not being detected #12

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
paths-ignore:
- ".gitignore"
pull_request:
branches:
- "*"
paths-ignore:
- ".gitignore"
workflow_dispatch:
permissions: write-all
jobs:
build:
runs-on: ubuntu-latest
name: "Build and test"
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: gradle
- name: Setup gradle
uses: gradle/gradle-build-action@v2
- name: Build with Gradle
run: ./gradlew build -x test --stacktrace
- uses: actions/upload-artifact@v3
name: Upload development build
with:
name: "Development Build"
path: build/libs/*.jar
- name: Test with Gradle
run: ./gradlew test
- uses: actions/upload-artifact@v3
name: "Upload test report"
if: ${{ !cancelled() }}
with:
name: "Test Results"
path: build/reports/tests/test/