Skip to content

SAK-50558 LTI 23.x - Modify external tools form to simplify adding an LTI 1.3 single tool #8922

SAK-50558 LTI 23.x - Modify external tools form to simplify adding an LTI 1.3 single tool

SAK-50558 LTI 23.x - Modify external tools form to simplify adding an LTI 1.3 single tool #8922

Workflow file for this run

# This workflow will build a Java project with Maven
# 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:
pull_request:
jobs:
maven-build:
runs-on: ubuntu-20.04
steps:
- name: Git Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
architecture: x64
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
env:
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true -Dmaven.wagon.http.retryHandler.count=2 -Dmaven.wagon.http.pool=true
run: mvn --show-version --batch-mode -PskipBrokenTests test
- name: Check Licenses
run: mvn -show-version --batch-mode -DskipTests license:check