Skip to content

Commit

Permalink
ci: only install binding dependencies when building binary
Browse files Browse the repository at this point in the history
  • Loading branch information
LingyuCoder committed Feb 21, 2025
1 parent 6c40cd2 commit 0b3b05a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,16 @@ jobs:
fmt: true
shared-key: check

- name: Pnpm Cache # Required by some tests
uses: ./.github/actions/pnpm-cache
with:
run-install: false

- name: Install taplo cli
shell: bash
run: |
pnpm install -g @taplo/[email protected]
- name: Run Cargo Check
run: cargo check --workspace --all-targets --locked # Not using --release because it uses too much cache, and is also slow.

Expand Down

0 comments on commit 0b3b05a

Please sign in to comment.