From 803a1bee3e09d64eb9251db1e29964d19d2c3c80 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Thu, 11 Dec 2025 10:01:09 +0100 Subject: [PATCH] ci --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c46d466..7661651 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,15 +7,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - nim: [2.0.14] + nim: [2.0.14, stable] os: [ubuntu-latest, macOS-latest, windows-latest] steps: - name: Checkout uses: actions/checkout@v4 - - name: Install Nim - uses: iffy/install-nim@v5 + - uses: jiro4989/setup-nim-action@v2 with: - version: ${{ matrix.nim }} + nim-version: ${{matrix.nim}} + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Build run: nimble install -y - name: Test