From 54df50abc60dd53d74282d0472dd9782bd754473 Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Wed, 6 Dec 2023 19:39:17 +0000 Subject: [PATCH] gha: fix syntax error --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b8104c8..5666586 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,6 +26,8 @@ jobs: with: submodules: true # --- Formatting --- + - name: "Install faasmctl" + run: pip3 install $(cat ./requirements.txt | grep faasmctl | tr -d '\n') - name: "Format code" run: ./bin/inv_wrapper.sh format-code --check @@ -103,6 +105,7 @@ jobs: echo "py-commit=$(git submodule status ./python | cut '-d ' -f 2)" >> $GITHUB_OUTPUT - name: "Prepare WASM cache" uses: actions/cache@v3.3.1 + with: path: /usr/local/faasm/wasm key: wasm-${{ steps.submodule-commit.outputs.cpp-commit }}--${{ steps.submodule-commit.outputs.py-commit }}