Add GCC 16 support for P2630 and P3355 #57
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 |