Skip to content

Bump rustls-webpki from 0.101.2 to 0.101.4 #254

Bump rustls-webpki from 0.101.2 to 0.101.4

Bump rustls-webpki from 0.101.2 to 0.101.4 #254

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@v3
- name: Cache folders
uses: actions/cache@v3
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