Skip to content

refactor/envelope-encryption #17

refactor/envelope-encryption

refactor/envelope-encryption #17

name: Envelope encryption build
on:
push:
branches:
- "*"
paths:
- envelope-encryption/**
- .github/workflows/envelope-encryption.yml
pull_request:
branches:
- main
paths:
- envelope-encryption/**
- .github/workflows/envelope-encryption.yml
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./envelope-encryption
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt
cache: maven
- name: Compile project
run: mvn compile
- name: Run Integration Tests
run: mvn integration-test verify