refactor(windows): use http
scheme by default for custom protocols and add option to change it
#2718
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 |