Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Update to 1.20.2

Update to 1.20.2 #23

Workflow file for this run

# 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: Slimefun Build Test
on:
push:
branches:
- master
paths:
- 'src/**'
- 'pom.xml'
pull_request:
paths:
- '.github/workflows/**'
- 'src/**'
- 'pom.xml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 17
java-package: jdk
architecture: x64
- run: mvn -B test --file pom.xml --errors
- run: mvn package
- uses: actions/upload-artifact@v3
with:
name: Slimefun
path: target/Slimefun*.jar
- uses: actions/cache@v2
if: github.event_name != 'pull_request'
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2