From c538156b9e28ad1f9278c499867e32ce6d0463b0 Mon Sep 17 00:00:00 2001 From: Noah Canadea Date: Thu, 16 Nov 2023 12:22:00 +0000 Subject: [PATCH] fix(cicd): Add checkout to linter action. --- .github/workflows/check_format_and_lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check_format_and_lint.yml b/.github/workflows/check_format_and_lint.yml index b1b9423..10ae4a8 100644 --- a/.github/workflows/check_format_and_lint.yml +++ b/.github/workflows/check_format_and_lint.yml @@ -12,6 +12,9 @@ jobs: check_code: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install Python uses: actions/setup-python@v2 with: