Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump katana CLI to support RPC options #188

Merged
merged 4 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.81.0
RUST_VERSION: 1.85.0

jobs:
test:
Expand All @@ -18,6 +18,10 @@ jobs:
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
# Required to build Katana at the moment.
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: cargo test

clippy:
Expand All @@ -28,6 +32,10 @@ jobs:
with:
toolchain: ${{ env.RUST_VERSION }}
components: clippy
# Required to build Katana at the moment.
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: cargo clippy --all-targets --all-features

fmt:
Expand All @@ -48,4 +56,8 @@ jobs:
with:
toolchain: ${{ env.RUST_VERSION }}
target: x86_64-pc-windows-msvc
# Required to build Katana at the moment.
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: cargo check --target x86_64-pc-windows-msvc --workspace
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.81.0
RUST_VERSION: 1.85.0
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}

jobs:
Expand Down Expand Up @@ -72,6 +72,11 @@ jobs:
with:
cache-on-failure: true

# Required to build Katana at the moment.
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Apple M1 setup
if: ${{ matrix.job.target == 'aarch64-apple-darwin' }}
run: |
Expand Down
Loading