Skip to content

Migrate to the new figure-linux-standard action runners #337

Migrate to the new figure-linux-standard action runners

Migrate to the new figure-linux-standard action runners #337

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
jobs:
build:
name: Build and Test
runs-on: figure-linux-standard
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
server-id: github
- name: Build
run: ./gradlew clean build --refresh-dependencies --parallel
- name: Integration Test
run: ./gradlew --info integrationTest