From 435100032f3e44f2b837e936cf7ea873e240c00b Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 19 Aug 2025 14:13:34 +0200 Subject: [PATCH] chore: fix ci --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d2d801..eda7407 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,8 @@ jobs: matrix: nim: - '2.0.14' + rust: + - '1.79.0' os: - ubuntu-latest - windows-latest @@ -25,12 +27,12 @@ jobs: if: matrix.os == 'windows-latest' run: | rustup set default-host x86_64-pc-windows-gnu - rustup update stable - rustup default stable + rustup update ${{ matrix.rust }} + rustup default ${{ matrix.rust }} - name: Set rust ${{ matrix.os }} if: matrix.os != 'windows-latest' - run: rustup update stable && rustup default stable + run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Setup nim uses: jiro4989/setup-nim-action@v1