Skip to content

Add session ID properties to connection events reporting #1290

Add session ID properties to connection events reporting

Add session ID properties to connection events reporting #1290

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@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: "11"
distribution: "microsoft"
- name: Cache Maven dependencies
uses: actions/cache@v3
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