diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml deleted file mode 100644 index 1981c8a..0000000 --- a/.github/workflows/pr.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: pr - -on: - pull_request: - paths-ignore: - - 'doc/**' - - '*.md' - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout the repo - uses: actions/checkout@v3 - with: - fetch-depth: 0 - ref: ${{ github.event.inputs.branch }} - - - uses: actions/setup-java@v3 - with: - distribution: 'coretto' - java-version: '11' - - - name: Run tests - run: ./gradlew check - - - name: Bundle the build report - if: failure() - run: find . -type d -name 'reports' | zip -@ -r build-reports.zip - - - name: Upload the build report - if: failure() - uses: actions/upload-artifact@master - with: - name: error-report - path: build-reports.zip - -env: - GRADLE_OPTS: -Dorg.gradle.configureondemand=true -Dorg.gradle.parallel=false -Dorg.gradle.jvmargs="-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"