test refc in CI in Nim 2.0 and later (#134)

This commit is contained in:
tersec 2024-02-17 02:09:58 +00:00 committed by GitHub
parent d0d9a0c286
commit 15325bd844
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@
mode = ScriptMode.Verbose
version = "0.3.2"
author = "Status Research & Development GmbH"
description = "This is the humble beginnings of library similar to web3.[js|py]"
description = "These are the humble beginnings of library similar to web3.[js|py]"
license = "MIT or Apache License 2.0"
### Dependencies
@ -42,3 +42,5 @@ proc test(args, path: string) =
### tasks
task test, "Run all tests":
test "", "tests/all_tests.nim"
if (NimMajor, NimMinor) > (1, 6):
test "--mm:refc", "tests/all_tests.nim"