Lines Matching +full:runs +full:- +full:on
2 on:
6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
7 # Ensure that only one commit will be running tests at a time on each PR
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
13 verify-property-name:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Generate property names
24 working-directory: scripts
25 - name: Check that repository is clean
28 set -o pipefail
29 if ! (git diff --exit-code --color=always | tee /tmp/lvgl_diff.patch); then