Skip to content

Bump webpki from 0.22.0 to 0.22.2 #43

Bump webpki from 0.22.0 to 0.22.2

Bump webpki from 0.22.0 to 0.22.2 #43

Workflow file for this run

---
name: Cargo Build & Test
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install toolchain
run: |
rustup update ${{ matrix.toolchain }} && \
rustup default ${{ matrix.toolchain }}
- name: Use cache
uses: Swatinem/rust-cache@v2
- name: Build with ${{ matrix.toolchain }}
run: cargo build --verbose
- name: Check with ${{ matrix.toolchain }}
run: cargo check --verbose