From ea91cd2dc11ff72f68786c1f58409b530d6bb68f Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Wed, 12 Jul 2023 19:50:00 -0700 Subject: [PATCH] check paths --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbecfa5..adc2f17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,20 +78,21 @@ jobs: run: | echo '${{ github.workspace }}'"/external/dlls" >> $GITHUB_PATH - - name: Setup Nimble - uses: "./.github/actions/install_nimble" - with: - os: ${{ matrix.target.os }} - cpu: ${{ matrix.target.cpu }} - - name: Restore nimble dependencies from cache id: nimble_deps uses: actions/cache@v3 with: path: | + ~/.nimble ${{ github.workspace }}/.nimble key: ${{ matrix.target.os }}-${{ matrix.target.cpu }}-dotnimble-${{ hashFiles('nimble.lock') }} + - name: Setup Nimble + uses: "./.github/actions/install_nimble" + with: + os: ${{ matrix.target.os }} + cpu: ${{ matrix.target.cpu }} + - name: Setup Env run: | nimble -v @@ -100,7 +101,6 @@ jobs: run: | nimble install -d nimble setup - cat nimble.paths - name: Run tests run: |