Multiverse-Core/.github/workflows/generic.test.yml

41 lines
1021 B
YAML
Raw Normal View History

2023-08-25 04:23:54 +02:00
name: 'Generic: Test'
2023-02-20 01:36:20 +01:00
on:
2023-08-25 04:23:54 +02:00
workflow_call:
inputs:
plugin_name:
description: 'Plugin name'
required: true
type: string
2023-02-20 01:36:20 +01:00
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
2023-03-08 21:19:50 +01:00
java-version: '17'
2023-02-20 01:36:20 +01:00
distribution: 'adopt'
cache: gradle
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Run unit tests
uses: gradle/gradle-build-action@v2
with:
2023-09-07 04:30:11 +02:00
arguments: build
2023-02-20 01:36:20 +01:00
env:
2023-03-03 16:28:55 +01:00
GITHUB_VERSION: pr${{ github.event.pull_request.number }}
2023-02-20 01:36:20 +01:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2023-03-03 16:21:36 +01:00
- name: Artifact output
2023-03-03 16:28:55 +01:00
uses: actions/upload-artifact@v3
2023-03-03 16:21:36 +01:00
with:
2023-08-25 04:23:54 +02:00
name: ${{ inputs.plugin_name }}-pr${{ github.event.pull_request.number }}
path: build/libs/${{ inputs.plugin_name }}-pr${{ github.event.pull_request.number }}.jar