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-formatting:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Checkout astyle
28 - name: Install astyle
33 astyle --version
34 - name: Format code
35 run: python code-format.py
36 working-directory: scripts
37 - name: Check that repository is clean
40 set -o pipefail
41 if ! (git diff --exit-code --color=always | tee /tmp/lvgl_diff.patch); then
42 echo "Please apply the preceding diff to your code or run scripts/code-format.py"