Skip to content

Commit

Permalink
Fix integration test errors (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeHartnell authored Mar 25, 2024
1 parent 8f37dc8 commit 49bd8e9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ jobs:
target: wasm32-unknown-unknown
override: true

- name: Set latest just version
run: echo "JUST_VERSION=$(cargo search just -q | sed -n -e '/^just[[:space:]]/p' | cut -d '"' -f 2)" >> $GITHUB_ENV

- name: Get cached just
uses: actions/cache@v3
with:
path: ~/.cargo/bin/just
key: ${{ runner.os }}-just-${{ env.JUST_VERSION }}

- name: Install just
run: cargo install just || true

- name: Rust Dependencies Cache
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 49bd8e9

Please sign in to comment.