Skip to content

Release 2.14.5: Security fixes and dependency upgrades #864

Release 2.14.5: Security fixes and dependency upgrades

Release 2.14.5: Security fixes and dependency upgrades #864

Workflow file for this run

# This workflow is designed to build PRs for AHC. Note that it does not actually publish AHC, just builds and test it.
# Docs: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Test PR
on:
pull_request:
branches: [ master, 2.14.5 ]
push:
branches: [ 2.14.5 ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK 8
uses: actions/setup-java@v5
with:
java-version: 8
distribution: 'corretto'
- name: Build and test with Maven
run: mvn test -ntp -B -Ptest-output -DexcludedGroups=online