Remove io_optimized / sbq_speedup storage mode #922
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run code checks | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
container: | |
image: timescaledev/rust-builder:ubuntu-1.65 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Verify formatting | |
run: cd pgvectorscale && cargo fmt --check | |
- name: Check formatting failure | |
if: failure() | |
run: | | |
echo "cargo version is" | |
cargo --version | |