diff options
| author | 2024-09-24 09:24:57 -0500 | |
|---|---|---|
| committer | 2024-09-24 09:24:57 -0500 | |
| commit | 3d376d95344735798448dbbf54b84c71ecae12b1 (patch) | |
| tree | cca3468a2ba6b03a96527ab96ee46c3ffdd29f76 /.github | |
| parent | See msiexec logs. (diff) | |
What is yAmL
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e211b93..b470ce2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,10 +56,13 @@ jobs: run: msiexec /quiet /i janet.msi ALLUSERS=1 - name: Build Spork shell: cmd - run: cd spork && "C:\\Program Files\\Janet\\bin\\janet.exe" -l ./bundle -e "(build)" + run: | + cd spork && "C:\Program Files\Janet\bin\janet.exe" -l ./bundle -e "(build)" - name: Test Install shell: cmd - run: "C:\\Program Files\\Janet\\bin\\janet.exe" -e "(bundle/install `spork`)" + run: | + "C:\Program Files\Janet\bin\janet.exe" -e "(bundle/install `spork`)" - name: Run Tests shell: cmd - run: cd spork && "C:\\Program Files\\Janet\\bin\\janet.exe" -l ./bundle -e "(test)" + run: | + cd spork && "C:\Program Files\Janet\bin\janet.exe" -l ./bundle -e "(test)" |
