From 9b6b6bf9cfeb65bd428a1c2bb75299e4509fef12 Mon Sep 17 00:00:00 2001 From: Jack Ivanov Date: Tue, 8 Dec 2020 13:18:32 +0000 Subject: [PATCH] linter --- .github/workflows/linter.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index a28cef7..cc28928 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -12,11 +12,16 @@ jobs: name: Lint Code Base runs-on: ubuntu-latest steps: - - name: Checkout Code + - name: Checkout Code 1 uses: actions/checkout@v2 with: fetch-depth: 0 - path: algo + + - name: Checkout Code 2 + uses: actions/checkout@v2 + with: + fetch-depth: 0 + path: ansible - name: Lint Code Base uses: github/super-linter@v3 @@ -24,6 +29,6 @@ jobs: ACTIONS_RUNNER_DEBUG: true DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ANSIBLE_DIRECTORY: algo + # ANSIBLE_DIRECTORY: . OUTPUT_DETAILS: detailed VALIDATE_ALL_CODEBASE: false