File tree Expand file tree Collapse file tree 3 files changed +5
-23
lines changed Expand file tree Collapse file tree 3 files changed +5
-23
lines changed Original file line number Diff line number Diff line change 20
20
variant : ${{ matrix.racket-variant }}
21
21
version : ${{ matrix.racket-version }}
22
22
- name : Install Package and its Dependencies
23
+ run : raco pkg show --all
23
24
run : raco pkg install --auto --batch
25
+ run : raco pkg show --all
24
26
- name : Run Tests
25
27
run : raco test -t .
Original file line number Diff line number Diff line change 1
1
* ~undo-tree~
2
2
/chapter2 /compiled /
3
+ * .dep
4
+ * .zo
Original file line number Diff line number Diff line change 1
1
#lang info
2
-
3
- ;; Basic package information
4
2
(define collection "ramsay-sicp-solutions " )
5
3
(define version "1.0 " )
6
4
(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 " ))
You can’t perform that action at this time.
0 commit comments