Skip to content

Commit f57d7ad

Browse files
committed
test: remove workflow caches
1 parent f7f494e commit f57d7ad

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/run-tests.yml

+1-14
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,11 @@ jobs:
2626
sudo apt-get install -y pkg-config build-essential libudev-dev
2727
npm install --global yarn
2828
29-
- name: Cache Node Dependencies
30-
uses: actions/cache@v3
31-
with:
32-
path: '**/node_modules'
33-
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
34-
3529
- name: Install Rust
3630
uses: dtolnay/rust-toolchain@stable
3731
with:
3832
toolchain: stable
3933

40-
- name: Cache Rust
41-
uses: Swatinem/rust-cache@v2
42-
4334
- name: Install Solana
4435
run: |
4536
sh -c "$(curl -sSfL https://release.solana.com/${{ env.solana_version }}/install)"
@@ -58,8 +49,7 @@ jobs:
5849
- name: Install node modules
5950
run: |
6051
yarn --frozen-lockfile --network-concurrency 2
61-
- name: Cache Rust
62-
uses: Swatinem/rust-cache@v2
52+
6353
- name: Run Lint
6454
run: |
6555
if [ "${{ matrix.task }}" == "clippy" ]; then
@@ -80,9 +70,6 @@ jobs:
8070
with:
8171
toolchain: stable
8272

83-
- name: Cache Rust
84-
uses: Swatinem/rust-cache@v2
85-
8673
- name: Install Solana
8774
run: |
8875
sh -c "$(curl -sSfL https://release.solana.com/${{ env.solana_version }}/install)"

0 commit comments

Comments
 (0)