Skip to content

chore: update lance-core dependency to v3.0.0-beta.5 #55

chore: update lance-core dependency to v3.0.0-beta.5

chore: update lance-core dependency to v3.0.0-beta.5 #55

Workflow file for this run

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java Hive2
on:
push:
branches:
- main
paths:
- java/lance-namespace-hive2/**
- java/pom.xml
- .github/workflows/java-hive2.yml
pull_request:
types:
- opened
- synchronize
- ready_for_review
- reopened
paths:
- java/lance-namespace-hive2/**
- java/pom.xml
- .github/workflows/java-hive2.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
test:
runs-on: ubuntu-24.04
timeout-minutes: 30
strategy:
matrix:
java-version: [11, 17]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
cache: "maven"
- name: Lint
working-directory: java
run: make lint-hive2
- name: Build
working-directory: java
run: make build-hive2
- name: Test
working-directory: java
run: make test-hive2