From 4136d482f05e808cdc9632d5374928580e7bfe89 Mon Sep 17 00:00:00 2001 From: Leon Luttenberger Date: Fri, 1 Mar 2024 12:40:02 -0600 Subject: [PATCH] fix workflow --- .github/workflows/one-click-template-lint.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/one-click-template-lint.yml b/.github/workflows/one-click-template-lint.yml index edf4675b..9a2f48da 100644 --- a/.github/workflows/one-click-template-lint.yml +++ b/.github/workflows/one-click-template-lint.yml @@ -21,6 +21,15 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.11 + - name: Install Requirements + run: | + set -x + python -m pip install --upgrade pip + pip install -r requirements-dev.txt - name: Lint run: cfn-lint --template ./one-click-launch.yaml