Skip to content

Bump rustls-webpki from 0.103.12 to 0.103.13 #830

Bump rustls-webpki from 0.103.12 to 0.103.13

Bump rustls-webpki from 0.103.12 to 0.103.13 #830

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
component: clippy, rustfmt
- name: Check formatting
run: cargo fmt -- --check
- name: Check for warnings
run: cargo clippy -- -D warnings
- name: Build project
run: cargo build
- name: Run tests
run: cargo test