fix(deps): update rust crate webkit2gtk to v2.0.1 - autoclosed #3102
Workflow file for this run
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: fmt check | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'Cargo.toml' | |
jobs: | |
clippy_fmt_check: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt,clippy | |
- uses: Swatinem/rust-cache@v2 | |
- name: fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all --examples -- -D warnings |