fix!: flagd, wire up TLS support for gRPC connections #181
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: Flagd Checks | |
| on: | |
| push: | |
| paths: | |
| - 'crates/flagd/**' | |
| - 'crates/ofrep/**' | |
| - '.github/workflows/flagd-ofrep-check.yml' | |
| pull_request: | |
| paths: | |
| - 'crates/flagd/**' | |
| - 'crates/ofrep/**' | |
| - '.github/workflows/flagd-ofrep-check.yml' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Install protobuf compiler | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y protobuf-compiler | |
| - name: Install Rust | |
| run: rustup update --no-self-update stable && rustup default stable | |
| - name: Install cargo-msrv and cargo-readme | |
| working-directory: crates/flagd | |
| run: | | |
| cargo install cargo-msrv --locked | |
| cargo install cargo-readme | |
| - name: Verify Minimum Supported Rust Version | |
| working-directory: crates/flagd | |
| run: cargo msrv verify | |
| - name: Check README is up-to-date | |
| working-directory: crates/flagd | |
| run: | | |
| cargo readme --no-title --no-license > README.md.generated | |
| diff README.md README.md.generated | |
| - name: Install and run cargo-audit | |
| run: | | |
| cargo install cargo-audit --locked | |
| # Run from root directory where Cargo.lock is located | |
| cargo audit | |