Skip to content

Commit 3e1b5ab

Browse files
committed
Correct cache ID and cache more paths
1 parent 4ef7974 commit 3e1b5ab

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,19 @@ jobs:
3434
- uses: actions/cache@v4
3535
id: cache-test-dependencies
3636
with:
37-
path: /tmp/vim
37+
path: |
38+
/tmp/vim
39+
/home/runner/vim-v9.1.0774
40+
/home/runner/.vim
41+
/home/runner/vim
3842
key: ubuntu-latest_v9.1.0774
3943

4044
- uses: actions/setup-python@v5
4145
with:
4246
python-version: '3.12'
4347

4448
- uses: rhysd/action-setup-vim@v1.3.5
45-
if: steps.cache.outputs.cache-hit != 'true'
49+
if: steps.cache-test-dependencies.outputs.cache-hit != 'true'
4650
with:
4751
version: v9.1.0774
4852
configure-args: |

tests/units/autoload_proompter_base64.vader

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Execute (proompter#base64#EncodeFile and proompter#base64#DecodeToFile -- Play n
1919
let value = "Hello world\n"
2020

2121
call writefile([value], path_in, 's')
22+
sleep 100m
2223

2324
let encoded = proompter#base64#EncodeFile(path_in)
2425
sleep 100m

0 commit comments

Comments
 (0)