From e0856cd43d9f0f455b1ef4785a34116c64ca373a Mon Sep 17 00:00:00 2001 From: Arnaud Date: Thu, 16 Apr 2026 17:30:59 +0400 Subject: [PATCH] Restore previous action --- .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 c2afa0a..168e326 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,14 +8,14 @@ jobs: strategy: matrix: nim: [2.2.8] - os: [ubuntu-latest, macos-latest] + 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