Change Clang 22 support for P1857 to Clang 21, update hint #40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Verify data" | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| yamllint: | |
| name: "YAML lint" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| - name: "YAML lint" | |
| uses: karancode/yamllint-github-action@master | |
| with: | |
| yamllint_file_or_dir: "*.yaml" | |
| yamllint_strict: false | |
| yamllint_comment: false |