Skip to content

Added trust me project and bumped java to 21 #922

Added trust me project and bumped java to 21

Added trust me project and bumped java to 21 #922

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build-on-linux-with-jdk-17:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'maven'
- name: Build and test
run: mvn clean verify --no-transfer-progress