Skip to content

[RHCLOUD-37354] Add notifications backend outage resilient caches (#672) #2043

[RHCLOUD-37354] Add notifications backend outage resilient caches (#672)

[RHCLOUD-37354] Add notifications backend outage resilient caches (#672) #2043

Workflow file for this run

name: Build & Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 21
- name: Build with Maven
run: ./mvnw clean package --no-transfer-progress