Skip to content

feat: upgraded dependencies and code/tests to work with SQ 2025.01 #52

feat: upgraded dependencies and code/tests to work with SQ 2025.01

feat: upgraded dependencies and code/tests to work with SQ 2025.01 #52

Workflow file for this run

---
name: CI
env:
# https://github.com/actions/virtual-environments/issues/1499
MAVEN_CLI_OPTS: '-ntp --batch-mode --errors --fail-at-end --show-version -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120'
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v2
with:
java-version: 21
distribution: "temurin"
- name: mvn clean verify
run: mvn ${MAVEN_CLI_OPTS} clean verify