Lines Matching +full:fetch +full:- +full:depth
6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
13 verify-kconfig:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Setup Python
23 uses: actions/setup-python@v5
25 python-version: 3.7
26 - name: Check for leading spaces in Kconfig
27 working-directory: .
29 if grep -qP '^ +' Kconfig; then
33 - name: Run kconfig_verify.py
34 run: python3 -m pip install kconfiglib && python kconfig_verify.py ../Kconfig
35 working-directory: scripts