mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-04 17:10:59 -05:00
Bumps [arduino/setup-protoc](https://github.com/arduino/setup-protoc) from 2 to 3. - [Release notes](https://github.com/arduino/setup-protoc/releases) - [Commits](https://github.com/arduino/setup-protoc/compare/v2...v3) --- updated-dependencies: - dependency-name: arduino/setup-protoc dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
753 B
YAML
33 lines
753 B
YAML
name: Storage compatibility tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, dev ]
|
|
pull_request:
|
|
branches: [ '**' ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install dependencies
|
|
run: sudo apt-get install clang git-lfs
|
|
- name: Setup git-lfs
|
|
run: git lfs install
|
|
- name: Install minimal stable
|
|
uses: dtolnay/rust-toolchain@stable
|
|
- uses: actions/checkout@v4
|
|
- name: Install Protoc
|
|
uses: arduino/setup-protoc@v3
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: Swatinem/rust-cache@v2
|
|
- name: Run storage compatibility test
|
|
run: ./tests/storage-compat/storage-compatibility.sh
|
|
shell: bash
|