gradle.yml: add Gradle 7.3 to the build matrix

This is the lowest version we support at the moment (apart from Debian
Gradle). We should prevent it regressing without us noticing.
This commit is contained in:
Andreas Schildbach 2024-08-28 10:08:49 +02:00
parent 1421564fce
commit 2104a1e876

View File

@ -11,7 +11,11 @@ jobs:
os: [ubuntu-22.04, macOS-12, windows-2022]
java: ['17', '21']
distribution: ['temurin']
gradle: ['8.10']
gradle: ['7.3', '8.10']
exclude:
# Java 21+ requires Gradle 8.5+
- java: '21'
gradle: '7.3'
fail-fast: false
name: JAVA ${{ matrix.distribution }} ${{ matrix.java }} OS ${{ matrix.os }} Gradle ${{ matrix.gradle }}
steps: