Skip to content

Commit 7139850

Browse files
committed
WIP on CI
Signed-off-by: Kakadu <Kakadu@pm.me>
1 parent 360c8b3 commit 7139850

6 files changed

Lines changed: 36 additions & 4 deletions

File tree

.github/workflows/master.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
submodules: true
3737

3838

39-
- run: opam install ./src --yes --deps-only --with-test --with-doc
39+
- run: opam install . ./noCanren ./OCanren --yes --deps-only --with-test --with-doc
40+
working-directory: ./src
4041

4142
- name: List installed dependencies...
4243
run: opam list

src/.ocamlformat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = 0.28.1
1+
version = 0.26.2

src/JGS.opam

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
depends: [
4+
"dune" {>= "3.3"}
5+
"ocamlformat" {with-test & >= "0.26.1" & < "0.27"}
6+
"odoc" {with-doc}
7+
]
8+
build: [
9+
["dune" "subst"] {dev}
10+
[
11+
"dune"
12+
"build"
13+
"-p"
14+
name
15+
"-j"
16+
jobs
17+
"@install"
18+
"@runtest" {with-test}
19+
"@doc" {with-doc}
20+
]
21+
]

src/dune-project

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
(lang dune 3.3)
22

3+
(generate_opam_files true)
4+
35
(name JGS)
46

57
(package
6-
(name JGS))
8+
(name JGS)
9+
(depends
10+
(ocamlformat
11+
(and
12+
:with-test
13+
(>= 0.26.1)
14+
(< 0.27)))))

src/jtype_set.mli

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
type t
22

3+
val empty : t
4+
val cardinal : t -> int
35
val alpha_converted_answer_set : t ref
46
val add_alpha_converted : JGS.HO.jtype_logic -> t -> t
57
val mem_alpha_converted : JGS.HO.jtype_logic -> t -> bool

0 commit comments

Comments
 (0)