48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: Java CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
Build:
|
|
strategy:
|
|
matrix:
|
|
jdkversion: [ 11 ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: ${{ matrix.jdkversion }}
|
|
cache: 'maven'
|
|
- name: Build
|
|
run: mvn -V -B clean package --file pom.xml
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v3.1.2
|
|
with:
|
|
name: Download
|
|
path: ./target/AuthMe-5.6.0-FORK-Spigot-Universal.jar
|
|
runtime-test:
|
|
name: Plugin Runtime Test
|
|
needs: [Build]
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- mcVersion: '1.8.8'
|
|
javaVersion: '8'
|
|
- mcVersion: '1.12.2'
|
|
javaVersion: '8'
|
|
- mcVersion: '1.20.2'
|
|
javaVersion: '17'
|
|
steps:
|
|
- uses: buiawpkgew1/minecraft-plugin-runtime-test-Guizhan@v1.1.4
|
|
with:
|
|
server-version: ${{ matrix.mcVersion }}
|
|
java-version: ${{ matrix.javaVersion }}
|
|
artifact-name: artifact-${{ github.event.number }}
|