Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ jobs:
run: |
cd atlas
nim test

- name: Run Docs
run: |
cd atlas
nim docs

- name: Test install with Nimble
run: |
Expand Down
6 changes: 5 additions & 1 deletion config.nims
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import std/[strformat, strutils]

when defined(nimPreviewSlimSystem):
import std/syncio

--path:"$nim"
--path:"../sat/src/"

Expand Down Expand Up @@ -82,7 +86,7 @@ task test, "Runs all tests":
testerTask()

task docs, "build Atlas's docs":
exec "nim rst2html --putenv:atlasversion=$1 doc/atlas.md" % version
exec "nim rst2html --putenv:atlasversion=$1 --d:nimPreviewSlimSystem doc/atlas.md" % version

# begin Nimble config (version 2)
# when withDir(thisDir(), system.fileExists("nimble.paths")):
Expand Down
Loading