[agent] Update MSRV to 1.91.1 and preserve zeroization for secret key conversions #852
Workflow file for this run
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
| # https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| name: Test | |
| jobs: | |
| check: | |
| name: Check | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| CARGO_TERM_COLOR: always | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install protoc | |
| run: sudo apt-get update && sudo apt-get install -y protobuf-compiler libprotobuf-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - uses: actions/checkout@v6 | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: check | |
| test: | |
| name: Test Suite | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| CARGO_TERM_COLOR: always | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install protoc | |
| run: sudo apt-get update && sudo apt-get install -y protobuf-compiler libprotobuf-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - uses: actions/checkout@v6 | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test |