Remove compatibility with Nim versions < 1.6

The `check eventually` template is incompatible
with Nim 1.2. It uses `await` in a template,
which is not possible until after 1.2.

https://github.com/nim-lang/Nim/pull/12085#issuecomment-526210003
This commit is contained in:
Mark Spanbroek 2023-06-22 09:51:36 +02:00 committed by markspanbroek
parent b551eb3705
commit 698d0f77d6

View File

@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim: [stable, 1.2.6]
nim: [stable, 1.6.12]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2