We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0cd7fd commit f61a9b0Copy full SHA for f61a9b0
.github/workflows/test.yml
@@ -15,6 +15,14 @@ jobs:
15
- name: Checkout repository
16
uses: actions/checkout@v4
17
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
+
26
- name: Install dependencies
27
run: |
28
brew install bats-core
tests/test_entry_loading.bats
@@ -2,7 +2,7 @@
2
# tests/test_entry_loading.bats - Tests for entry.zsh script loading
3
4
setup() {
5
- source tests/helpers.bash
+ source helpers.bash
6
setup_test_env
7
}
8
0 commit comments