From 6cac79844e2f3b07f084cc16852b3716cea49c63 Mon Sep 17 00:00:00 2001 From: Jake Leahy Date: Tue, 17 Dec 2024 18:31:02 +1100 Subject: [PATCH] Only run windows on stable Clean up cache step --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdfb55d..2ce75a0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,10 @@ jobs: matrix: nim: ['1.6.12', 'stable', 'devel'] gc: ['refc', 'orc'] - os: ["ubuntu-latest", "windows-latest"] + os: ["ubuntu-latest"] + include: + - os: windows-latest + nim: "stable" runs-on: ${{ matrix.os }} name: Nim ${{ matrix.os }} ${{ matrix.nim }} ${{ matrix.gc }} test steps: @@ -30,7 +33,7 @@ jobs: - name: Cache choosenim id: cache-choosenim - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.nimble key: nimble-v2-${{ hashFiles('*.nimble') }}