From 53849e84930bc4102f2a8334aacd271b9183aaa7 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:34:11 +1100 Subject: [PATCH] bumps nim from 1.6.16 to 1.6.20 in ci --- .github/workflows/ci.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5aa5cf8..174f73e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,17 +12,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - nim: [1.6.16, stable] + nim: [1.6.20, stable] steps: - - name: Checkout - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 - - name: Install Nim - uses: iffy/install-nim@v4 - with: - version: ${{ matrix.nim }} - - name: Build - run: nimble install -y + - name: Install Nim + uses: iffy/install-nim@v4 + with: + version: ${{ matrix.nim }} + - name: Build + run: nimble install -y - - name: Test - run: nimble test -y + - name: Test + run: nimble test -y