mirror of
https://github.com/tower-rs/tower.git
synced 2026-01-20 15:46:07 +00:00
* service: Update docs and prepare for 0.3 release * Update rustmft * Disable main tower crate
16 lines
330 B
YAML
16 lines
330 B
YAML
jobs:
|
|
# Check formatting
|
|
- job: ${{ parameters.name }}
|
|
displayName: Check rustfmt
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- template: azure-install-rust.yml
|
|
parameters:
|
|
rust: stable
|
|
components:
|
|
- rustfmt
|
|
- bash: |
|
|
cargo fmt --all -- --check
|
|
displayName: Check formatting
|