Skip to content

 Send auth on cluster recommendations and report cluster source (C#, Go, TS) #1483

 Send auth on cluster recommendations and report cluster source (C#, Go, TS)

 Send auth on cluster recommendations and report cluster source (C#, Go, TS) #1483

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
working-directory: java
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0717577d45739eb3c851188b29f50ed6c0b2194e # v2.8.0
- name: Set up JDK 11
uses: actions/setup-java@215b7e5f829ab9cac114c149667e57dc1b70b4bc # v2.5.2
with:
java-version: "11"
distribution: "microsoft"
- name: Cache Maven dependencies
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
# don't run ConnectionTest for now.
run: mvn -B package --file pom.xml -Dtest=TunnelContractsTests