Skip to content

Commit 574d1cb

Browse files
committed
Update CI built to 7.8 and add Alex as responsible for the tests
Racket 7.8 has been released, so ci.yml has been updated to use that version for the builds. Also added myself as the person responsible for all tests (apparently this needs to be done in all the "info.rkt" files)
1 parent 3415fc6 commit 574d1cb

File tree

8 files changed

+13
-1
lines changed

8 files changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
racket-version: ["7.7", "current"]
9+
racket-version: ["7.8", "current"]
1010
racket-variant: ["regular", "CS"]
1111
steps:
1212
- uses: actions/checkout@v2

plot-compat/info.rkt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@
1313
(define pkg-desc "Compatibility library for Plot 5.1.3 and earlier")
1414

1515
(define pkg-authors '(ntoronto))
16+
17+
(define test-responsibles '((all [email protected])))

plot-compat/plot/info.rkt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
#lang info
2+
(define test-responsibles '((all [email protected])))

plot-doc/info.rkt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@
2626
(define pkg-desc "Documentation for plot")
2727

2828
(define pkg-authors '(ntoronto))
29+
30+
(define test-responsibles '((all [email protected])))

plot-gui-lib/info.rkt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@
1717
(define pkg-authors '(ntoronto))
1818

1919
(define version "1.1")
20+
21+
(define test-responsibles '((all [email protected])))

plot-lib/info.rkt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@
1919
(define pkg-authors '(ntoronto))
2020

2121
(define version "1.1")
22+
23+
(define test-responsibles '((all [email protected])))

plot-test/plot/info.rkt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#lang info
22
(define compile-omit-paths '("tests"))
3+
(define test-responsibles '((all [email protected])))

plot/info.rkt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
(define pkg-desc "Functions (and docs and tests) for plotting")
99

1010
(define pkg-authors '(ntoronto))
11+
12+
(define test-responsibles '((all [email protected])))

0 commit comments

Comments
 (0)