aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2024-09-24 08:42:21 -0500
committerCalvin Rose <calsrose@gmail.com>2024-09-24 08:42:21 -0500
commit55e94644fd9109eaef0df298ae6fb185dc1e25b5 (patch)
treef979e44bc86739344fa9e344d531d66526ae63e7 /.github/workflows
parentInstall then test on Linux. (diff)
Sudo
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 717ff81..b20be69 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -31,7 +31,7 @@ jobs:
- name: Build Spork
run: cd spork && janet -l ./bundle -e "(build)"
- name: Test Install
- run: janet -e '(bundle/install "spork")'
+ run: sudo janet -e '(bundle/install "spork")'
- name: Run Tests
run: cd spork && janet -l ./bundle -e "(test)"
@@ -57,9 +57,9 @@ jobs:
- name: Build Spork
shell: cmd
run: cd spork && janet -l ./bundle -e "(build)"
- - name: Run Tests
- shell: cmd
- run: cd spork && janet -l ./bundle -e "(test)"
- name: Test Install
shell: cmd
run: janet -e "(bundle/install `spork`)"
+ - name: Run Tests
+ shell: cmd
+ run: cd spork && janet -l ./bundle -e "(test)"