checks.yml (352B)
1 --- 2 name: Scripted Checks 3 'on': [push, pull_request] 4 concurrency: 5 group: ${{ github.workflow }}-${{ github.ref }} 6 cancel-in-progress: true 7 jobs: 8 yamllint: 9 runs-on: ubuntu-latest 10 steps: 11 - name: Check out 12 uses: actions/checkout@v4 13 - name: Run yamllint 14 run: for i in $(git ls-files '*.yml'); do yamllint $i; done