Skip to content

Commit

Permalink
Fix integration test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Hartnell committed Mar 25, 2024
1 parent 8f37dc8 commit bb6f316
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
branches:
- main

jobs:

jobs:
test:
name: Integration tests
runs-on: ubuntu-latest
Expand All @@ -25,6 +26,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 bb6f316

Please sign in to comment.