Skip to content

Commit f61a9b0

Browse files
fix bad path
1 parent a0cd7fd commit f61a9b0

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v4
1717

18+
- name: Cache Homebrew
19+
uses: actions/cache@v4
20+
with:
21+
path: ~/Library/Caches/Homebrew
22+
key: ${{ runner.os }}-homebrew-${{ hashFiles('**/Brewfile') }}
23+
restore-keys: |
24+
${{ runner.os }}-homebrew-
25+
1826
- name: Install dependencies
1927
run: |
2028
brew install bats-core

tests/test_entry_loading.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# tests/test_entry_loading.bats - Tests for entry.zsh script loading
33

44
setup() {
5-
source tests/helpers.bash
5+
source helpers.bash
66
setup_test_env
77
}
88

0 commit comments

Comments
 (0)