Skip to content

CIV-14664 Service PR to update Judgments Tab in ExUI #9577

CIV-14664 Service PR to update Judgments Tab in ExUI

CIV-14664 Service PR to update Judgments Tab in ExUI #9577

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
- refs/tags/*
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Cache
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Run checks
run: ./gradlew check
- name: Run integration tests
run: ./gradlew integration
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: integration-tests-results
path: build/reports/tests/integration