Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a4111d9
Add common intellij paths to .gitignore
torbencarstens Sep 18, 2023
ad46aa4
Use 1.6.14 in CI instead of pre-1.6.0 git sha
torbencarstens Sep 18, 2023
08bec4a
Add 2.0.0 to test matrix
torbencarstens Sep 18, 2023
2fe8aa7
Only test nim-in-action-code/Chapter7 for nim versions < 2.0
torbencarstens Sep 18, 2023
c631652
Bump actions/checkout and iffy/install-nim
torbencarstens Sep 18, 2023
f05bd2b
Run 'git submodule update --init' for 'nimble test' to ensure that al…
torbencarstens Sep 18, 2023
88b2ace
Add 'nimble refresh' and 'nimble install' for 'nimble test' task befo…
torbencarstens Sep 18, 2023
5c9e5d3
Remove trailing whitespace
torbencarstens Sep 18, 2023
fef495a
Add support for duplicate keys in parameters by adding `paramValuesAs…
torbencarstens Sep 18, 2023
b8374b4
Adapt `params` to use `cgi.decodeData` instead of `parseUrlQuery`
torbencarstens Sep 18, 2023
f916b25
Add tests for #247
torbencarstens Sep 18, 2023
d330fad
Fix argument name to iffy/install-nim
torbencarstens Sep 18, 2023
1cce8cc
Auto accept nimble for refresh/install
torbencarstens Sep 18, 2023
944dc39
Run debug actions in CI
torbencarstens Sep 18, 2023
149d5bf
Only debug 2.0.0
torbencarstens Sep 18, 2023
88e4a29
Remove debug actions
torbencarstens Sep 18, 2023
cda4d39
Run nim2 with '--mm:refc'
torbencarstens Sep 18, 2023
85b2692
Remove nim2 from CI
torbencarstens Sep 18, 2023
84035bf
Remove debug when
torbencarstens Sep 18, 2023
44d5868
Revert "Add common intellij paths to .gitignore"
torbencarstens Sep 19, 2023
c824fef
Merge branch 'master' into allowDuplicateQueryKeys
ThomasTJdev Jan 19, 2024
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
Prev Previous commit
Next Next commit
Run 'git submodule update --init' for 'nimble test' to ensure that al…
…l test requirements are present

Only do this when nim version < 2.0
  • Loading branch information
torbencarstens committed Sep 18, 2023
commit f05bd2ba86080ec6b3caab8248bbc88230672984
2 changes: 2 additions & 0 deletions jester.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ when not defined(windows):
requires "httpbeast >= 0.4.0"

task test, "Runs the test suite.":
when NimMajor < 2:
exec "git submodule update --init"
exec "nimble install -y asynctools@#0e6bdc3ed5bae8c7cc9"
exec "nim c -r tests/tester"