TCP CRR workload #1186
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: Config Validation | |
| on: | |
| pull_request: | |
| paths: | |
| - 'examples/**/*.yaml' | |
| - 'examples/**/*.yml' | |
| - 'lading/**' | |
| - '.github/workflows/config-validation.yml' | |
| - 'ci/config-validation' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'examples/**/*.yaml' | |
| - 'examples/**/*.yml' | |
| - 'lading/**' | |
| - '.github/workflows/config-validation.yml' | |
| - 'ci/config-validation' | |
| env: | |
| MISE_VERSION: "2026.3.15" | |
| jobs: | |
| validate-configs: | |
| name: Validate Example Configs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions-rust-lang/setup-rust-toolchain@150fca883cd4034361b621bd4e6a9d34e5143606 # v1.15.4 | |
| with: | |
| cache: true | |
| - name: Install nextest | |
| uses: jdx/mise-action@6d1e696aa24c1aa1bcc1adea0212707c71ab78a8 # v3.6.1 | |
| with: | |
| version: ${{ env.MISE_VERSION }} | |
| install_args: "aqua:nextest-rs/nextest/cargo-nextest" | |
| - name: Install Protobuf | |
| uses: ./.github/actions/install-protobuf | |
| - name: Install FUSE | |
| uses: ./.github/actions/install-fuse | |
| - name: Run config validation | |
| run: ./ci/config-validation |