Skip to content

Commit bda15f4

Browse files
committed
fixes
1 parent cc114ee commit bda15f4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ jobs:
1414
- uses: jiro4989/setup-nim-action@v1
1515
- run: nimble test -y
1616
- run: nimble test --gc:orc -y
17-
- run: nim js all.nim
18-
- run: nim cpp -d:release --gc:arc all.nim
17+
- run: nim js tests/all.nim
18+
- run: nim cpp -d:release --gc:arc tests/all.nim

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ Pure nim module with no other dependencies.
44

55
![Github Actions](https://github.com/treeform/vmath/workflows/Github%20Actions/badge.svg)
66

7-
87
`nimble install jsony`
98

9+
Check out the [Api Reference](https://nimdocs.com/treeform/jsony/jsony.html).
10+
1011
```nim
1112
@[1, 2, 3].toJson() -> "[1,2,3]"
1213
"[1,2,3]".fromJson(seq[int]) -> @[1, 2, 3]

0 commit comments

Comments
 (0)