Skip to content
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
5 changes: 5 additions & 0 deletions .changeset/puny-guests-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@codama/renderers-rust': patch
---

Don't generate `borsh::to_vec` if no borsh traits
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
DO_NOT_TRACK: '1'
NODE_VERSION: 20
SOLANA_VERSION: 2.1.9
RUST_TOOLCHAIN: '1.86.0'

jobs:
lint:
Expand Down Expand Up @@ -44,6 +45,12 @@ jobs:
- name: Git checkout
uses: actions/checkout@v4

- name: Install Rust Toolchain and Components
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
components: clippy, rustfmt

- name: Install Solana ${{ env.SOLANA_VERSION }}
uses: solana-program/actions/install-solana@v1
with:
Expand Down
Loading