Make capture CLI flags optional #715
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' | |
| jobs: | |
| validate-configs: | |
| name: Validate Example Configs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2 | |
| with: | |
| cache: true | |
| - uses: taiki-e/install-action@44c6d64aa62cd779e873306675c7a58e86d6d532 # v2.44.60 | |
| with: | |
| tool: [email protected] | |
| - name: Install Protobuf | |
| uses: ./.github/actions/install-protobuf | |
| - name: Install FUSE | |
| uses: ./.github/actions/install-fuse | |
| - name: Run config validation | |
| run: ./ci/config-validation |