test both refc and ORC in post-1.6 Nim versions (#8)

This commit is contained in:
tersec 2023-04-13 23:26:03 +00:00 committed by GitHub
parent 1cbdd8d361
commit d65ee2a761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# nim-zlib
# Copyright (c) 2021-2022 Status Research & Development GmbH
# Copyright (c) 2021-2023 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
@ -30,3 +30,7 @@ task test, "Run all tests":
test "-d:debug", "tests/test_all"
test "-d:release", "tests/test_all"
test "--threads:on -d:release", "tests/test_all"
if (NimMajor, NimMinor) > (1, 6):
test "-d:debug", "tests/test_all"
test "-d:release", "tests/test_all"
test "--threads:on -d:release", "tests/test_all"