Skip to content

=== DO NOT MERGE ! TEST PR === #91

=== DO NOT MERGE ! TEST PR ===

=== DO NOT MERGE ! TEST PR === #91

Workflow file for this run

name: Claire Build and Smoke Test
on:
workflow_dispatch:
push:
pull_request:
branches:
- main
permissions: read-all
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up a cache for Maven
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build
run: make build
- name: Run standalone smoke tests
run: make standalone_test_smoke
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: testing-cluster
- name: Run operator smoke tests
run: make operator_test_smoke