From 59db7d91c297a4ea1571def50f81d480451ed02f Mon Sep 17 00:00:00 2001 From: Ben Woo <30431861+benwoo1110@users.noreply.github.com> Date: Fri, 25 Aug 2023 10:49:19 +0800 Subject: [PATCH] ci: Use generic workflow for test --- .github/workflows/pr.test.yml | 31 +++---------------------------- 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/.github/workflows/pr.test.yml b/.github/workflows/pr.test.yml index 69a174f..431a5ee 100644 --- a/.github/workflows/pr.test.yml +++ b/.github/workflows/pr.test.yml @@ -6,31 +6,6 @@ on: jobs: test: - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - uses: actions/checkout@v3 - - - uses: actions/setup-java@v3 - with: - java-version: '11' - 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: - arguments: build - env: - GITHUB_VERSION: pr${{ github.event.pull_request.number }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Artifact output - uses: actions/upload-artifact@v3 - with: - name: multiverse-core-pr${{ github.event.pull_request.number }} - path: build/libs/multiverse-core-pr${{ github.event.pull_request.number }}.jar + uses: Multiverse/Multiverse-Core/.github/workflows/generic.test.yml@main + with: + plugin_name: multiverse-portals