chore(deps): bump libc from 0.2.180 to 0.2.181 in /validation/local_ping_pong_openssl in the all-deps group #225
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
| name: validate-local-openssl | |
| defaults: | |
| run: | |
| working-directory: validation/local_ping_pong_openssl | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - README.md | |
| push: | |
| branches: master | |
| paths-ignore: | |
| - README.md | |
| permissions: | |
| contents: read | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| RUSTFLAGS: "-Dwarnings" | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: RustCrypto/actions/cargo-cache@master | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: Test against OpenSSL locally | |
| run: cargo test |