@@ -87,19 +87,19 @@ jobs:
87
87
- name : Setup Bats and Bats libs
88
88
uses :
brokenpip3/[email protected]
89
89
with :
90
- bats-version : ' 1.10.0'
90
+ bats-version : 1.10.0
91
91
support-version : 0.3.0
92
- support-path : ' ${{ github.workspace }}/.bats/bats-support'
92
+ support-path : ${{ github.workspace }}/.bats/bats-support
93
93
assert-version : 2.1.0
94
- assert-path : ' ${{ github.workspace }}/.bats/bats-assert'
94
+ assert-path : ${{ github.workspace }}/.bats/bats-assert
95
95
file-install : false
96
96
detik-install : false
97
97
98
98
# LIB_PATH is a env var I use in the setup() function of my bats tests
99
99
# it points to the folder containing bats-assert and bats-support
100
100
- name : Run Test
101
101
env :
102
- LIB_PATH : /usr/lib/
102
+ LIB_PATH : ${{ github.workspace }}/.bats
103
103
DOCKER_IMAGE : ${{ env.TAG }}
104
104
run : bats tests/base.bats
105
105
@@ -200,18 +200,18 @@ jobs:
200
200
- name : Setup Bats and Bats libs
201
201
uses :
brokenpip3/[email protected]
202
202
with :
203
- bats-version : ' 1.10.0'
203
+ bats-version : 1.10.0
204
204
support-version : 0.3.0
205
- support-path : ' ${{ github.workspace }}/.bats/bats-support'
205
+ support-path : ${{ github.workspace }}/.bats/bats-support
206
206
assert-version : 2.1.0
207
- assert-path : ' ${{ github.workspace }}/.bats/bats-assert'
207
+ assert-path : ${{ github.workspace }}/.bats/bats-assert
208
208
file-install : false
209
209
detik-install : false
210
210
211
211
# LIB_PATH is a env var I use in the setup() function of my bats tests
212
212
# it points to the folder containing bats-assert and bats-support
213
213
- name : Run Test
214
214
env :
215
- LIB_PATH : /usr/lib/
215
+ LIB_PATH : ${{ github.workspace }}/.bats
216
216
DOCKER_IMAGE : ${{ env.TAG }}
217
217
run : bats tests/consumer-idris.bats
0 commit comments