Merge: fix(openssl): bump to address CVE-2025-3416 (#47) #62
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| stable-tests: | |
| name: Run tests on stable rust | |
| uses: ./.github/workflows/test.yml | |
| with: | |
| rust-version: stable | |
| minimal-versions-tests: | |
| name: Run tests with minimal dependency and compiler versions | |
| uses: ./.github/workflows/test.yml | |
| with: | |
| rust-version: 1.63.0 # also change in Cargo.toml and README.md | |
| minimal-versions: true | |
| formatting: | |
| name: Code formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: fmt | |
| args: --all -- --check | |
| clippy: | |
| name: Clippy lints | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - uses: Swatinem/rust-cache@v1 | |
| - uses: actions-rs/clippy-check@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --all-features --all-targets -- -D warnings |