Skip to content

Bump rustls-webpki from 0.103.8 to 0.103.10 #464

Bump rustls-webpki from 0.103.8 to 0.103.10

Bump rustls-webpki from 0.103.8 to 0.103.10 #464

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Cache folders
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check formatting, run clippy and test
run: cargo fmt --all -- --check && cargo clippy -- -D warnings && cargo test