Skip to content

RL/CORE-8480

RL/CORE-8480 #2

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build & test
on:
pull_request:
push:
branches: [ main, release/* ]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: 8
distribution: 'temurin'
- uses: burrunan/gradle-cache-action@cbdf4342ff988d143aa7a5aeceedffafb8c74bcf #v1.10
name: Build with Gradle
with:
arguments: build
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v2
with:
name: Test Results Linux
path: '**/test-results/**/*.xml'