Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Oct 25, 2023
1 parent c4684ff commit 704a51b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
- name: Get latest rlst commit id
id: rlst-commit
run: |
echo "commit=$(git ls-remote https://github.com/linalg-rs/rlst.git HEAD | head -c 10)"
echo "commit=$(git ls-remote https://github.com/linalg-rs/rlst.git HEAD | head -c 10)" >> $GITHUB_OUTPUT
echo "commit=$(git ls-remote https://github.com/linalg-rs/rlst.git HEAD | head -c 40)"
echo "commit=$(git ls-remote https://github.com/linalg-rs/rlst.git HEAD | head -c 40)" >> $GITHUB_OUTPUT
- name: Restore cached dependencies
id: cache
uses: actions/cache/restore@v3
with:
path: |
target/debug/deps/
target/release/deps/
key: rlst-${{ steps.rlst-commit.output.commit }}-${{ matrix.mpi }}
key: rlst-${{ steps.rlst-commit.outputs.commit }}-${{ matrix.mpi }}

#- name: Set up Rust
# uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit 704a51b

Please sign in to comment.