Skip to content

Bump rustls-webpki from 0.100.1 to 0.100.2 #167

Bump rustls-webpki from 0.100.1 to 0.100.2

Bump rustls-webpki from 0.100.1 to 0.100.2 #167

Workflow file for this run

name: CI
on:
pull_request: {}
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: ["1.68", stable]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: sudo apt install libssl-dev
- run: cargo build --workspace -p oxidize
- run: cargo test --workspace --all-targets
if: matrix.rust == 'stable'
- run: cargo test --workspace --doc
if: matrix.rust == 'stable'
test-os:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --workspace --all-targets
- run: cargo test --workspace --doc
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.68
with:
components: clippy
- run: sudo apt install libssl-dev
- run: cargo clippy --workspace --all-features --all-targets -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all --check