mirror of
https://github.com/lancedb/lancedb.git
synced 2026-08-22 05:58:20 +00:00
cf27f6902e
Updates Lance dependencies and Java lance-core to v11.0.0-beta.16. Also narrows the dependency updater's package matching so the local LanceDB crate remains a path dependency. Lance tag: https://github.com/lance-format/lance/releases/tag/v11.0.0-beta.16 --------- Co-authored-by: Yang Cen <bubble-cal@outlook.com>
31 lines
590 B
YAML
31 lines
590 B
YAML
name: CI scripts
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ci/set_lance_version.py
|
|
- ci/tests/**
|
|
- .github/workflows/ci-scripts.yml
|
|
pull_request:
|
|
paths:
|
|
- ci/set_lance_version.py
|
|
- ci/tests/**
|
|
- .github/workflows/ci-scripts.yml
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
name: Test CI scripts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.13"
|
|
- name: Run tests
|
|
run: python -m unittest discover -s ci/tests -v
|