Files
bytes/ci/azure-rustfmt.yml
T

14 lines
324 B
YAML
Raw Normal View History

2020-05-22 13:17:30 +09:00
jobs:
# Check formatting
- job: ${{ parameters.name }}
displayName: Check rustfmt
pool:
vmImage: ubuntu-16.04
steps:
- template: azure-install-rust.yml
parameters:
rust_version: ${{ parameters.rust_version }}
- script: |
cargo fmt --all -- --check
displayName: Check formatting