Skip to content

Commit 8aaa657

Browse files
committed
Add print statement for debugging.
1 parent 64ab5f1 commit 8aaa657

File tree

3 files changed

+5
-23
lines changed

3 files changed

+5
-23
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
variant: ${{ matrix.racket-variant }}
2121
version: ${{ matrix.racket-version }}
2222
- name: Install Package and its Dependencies
23+
run: raco pkg show --all
2324
run: raco pkg install --auto --batch
25+
run: raco pkg show --all
2426
- name: Run Tests
2527
run: raco test -t .

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*~undo-tree~
22
/chapter2/compiled/
3+
*.dep
4+
*.zo

info.rkt

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,5 @@
11
#lang info
2-
3-
;; Basic package information
42
(define collection "ramsay-sicp-solutions")
53
(define version "1.0")
64
(define pkg-desc "Ramsay's solutions and notes for SICP exercises.")
7-
8-
;; Dependencies - this is like requirements.txt
9-
(define deps '("base" ; Always needed
10-
"rackunit-lib" ; For testing
11-
"sicp"
12-
))
13-
14-
;; Build dependencies (only needed during development)
15-
(define build-deps '("scribble-lib" ; For documentation
16-
"racket-doc" ; For documentation
17-
"rackunit-lib" ; For testing
18-
"rackcheck"
19-
"sicp"
20-
))
21-
22-
;; Test dependencies
23-
(define test-deps '("rackunit-lib"))
24-
25-
;; Which files to include when installing
26-
(define pkg-authors '("Ramsay Leung([email protected]"))
27-
5+
(define deps '("base" "rackunit-lib" "sicp"))

0 commit comments

Comments
 (0)