-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add get table version route (#65)
* chore: add rest metadata to protodefinitions * chore: scaffold get table version requests * test: set up tests with data data * chore: bump deltalake * ci: update action versions * chore: clippy * chore: remove deprecated method calls * chore: more clippy
- Loading branch information
Showing
27 changed files
with
2,548 additions
and
2,016 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,13 @@ jobs: | |
format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install minimal stable with clippy and rustfmt | ||
uses: actions-rs/toolchain@v1 | ||
- name: Setup rust toolchain | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
profile: default | ||
components: rustfmt | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Format | ||
run: cargo fmt -- --check | ||
|
@@ -33,18 +32,16 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install minimal stable with clippy and rustfmt | ||
uses: actions-rs/toolchain@v1 | ||
- name: Setup rust toolchain | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
profile: default | ||
components: clippy | ||
toolchain: stable | ||
override: true | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- name: build and lint with clippy | ||
- name: Check clippy | ||
run: cargo clippy --tests | ||
|
||
- name: Check docs | ||
|
@@ -68,16 +65,12 @@ jobs: | |
CARGO_INCREMENTAL: 0 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install minimal stable with clippy and rustfmt | ||
uses: actions-rs/toolchain@v1 | ||
- name: Setup rust toolchain | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
profile: default | ||
toolchain: "stable" | ||
override: true | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
toolchain: stable | ||
|
||
- name: Run unit tests | ||
run: cargo test --lib | ||
|
@@ -102,7 +95,7 @@ jobs: | |
DATABASE_URL: postgres://postgres:[email protected]:5432/sharing | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install minimal stable with clippy and rustfmt | ||
uses: actions-rs/toolchain@v1 | ||
|
Oops, something went wrong.