Skip to content

Commit 72339c9

Browse files
committed
Fix GitHub Action error.
1 parent 8aaa657 commit 72339c9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/push.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
on:
22
- push
3-
43
jobs:
54
test:
65
runs-on: ubuntu-latest
@@ -20,8 +19,11 @@ jobs:
2019
variant: ${{ matrix.racket-variant }}
2120
version: ${{ matrix.racket-version }}
2221
- name: Install Package and its Dependencies
23-
run: raco pkg show --all
24-
run: raco pkg install --auto --batch
25-
run: raco pkg show --all
22+
run: |
23+
echo "Before installation:"
24+
raco pkg show --all
25+
raco pkg install --auto --batch
26+
echo "After installation:"
27+
raco pkg show --all
2628
- name: Run Tests
2729
run: raco test -t .

0 commit comments

Comments
 (0)