Bump webpki from 0.22.0 to 0.22.4 #42
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: Continuous integration | |
jobs: | |
check: | |
name: Lints and tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install libgtk-3-dev | |
run: | | |
sudo apt update | |
sudo apt install libgtk-3-dev | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy -- -D warnings | |
- run: cargo check --all-features |