Skip to content

Commit

Permalink
feat: add get table version route (#65)
Browse files Browse the repository at this point in the history
* 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
roeap authored Nov 24, 2024
1 parent c99dc34 commit a1aaae3
Show file tree
Hide file tree
Showing 27 changed files with 2,548 additions and 2,016 deletions.
37 changes: 15 additions & 22 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading

0 comments on commit a1aaae3

Please sign in to comment.