mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-08-18 02:56:24 +00:00
Bumps the github-actions group with 1 update: [actions/setup-java](https://github.com/actions/setup-java). Updates `actions/setup-java` from 5 to 5.6.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v5...v5.6.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
792 B
YAML
41 lines
792 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**/resources/i18n/**'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Spark
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java:
|
|
- 11
|
|
- 17
|
|
- 21
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
|
|
- name: Set up JDK ${{ matrix.java }}
|
|
uses: actions/setup-java@v5.6.0
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
distribution: zulu
|
|
|
|
- name: Cache Maven packages
|
|
uses: actions/cache@v6
|
|
with:
|
|
path: ~/.m2
|
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: ${{ runner.os }}-m2
|
|
|
|
- name: Build with Maven
|
|
run: mvn --batch-mode --update-snapshots verify
|