Bump webpki from 0.22.0 to 0.22.2 #43
This file contains 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: 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 |