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 8aaa657 commit 72339c9Copy full SHA for 72339c9
.github/workflows/push.yml
@@ -1,6 +1,5 @@
1
on:
2
- push
3
-
4
jobs:
5
test:
6
runs-on: ubuntu-latest
@@ -20,8 +19,11 @@ jobs:
20
19
variant: ${{ matrix.racket-variant }}
21
version: ${{ matrix.racket-version }}
22
- name: Install Package and its Dependencies
23
- run: raco pkg show --all
24
- run: raco pkg install --auto --batch
25
+ run: |
+ echo "Before installation:"
+ raco pkg show --all
+ raco pkg install --auto --batch
26
+ echo "After installation:"
27
28
- name: Run Tests
29
run: raco test -t .
0 commit comments