From 698d0f77d683a1b0a0768ca9c60f8fa556671e30 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Thu, 22 Jun 2023 09:51:36 +0200 Subject: [PATCH] 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 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9c05e1d..198f15d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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