mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
17 lines
412 B
YAML
17 lines
412 B
YAML
|
jobs:
|
||
|
# Check formatting
|
||
|
- job: ${{ parameters.name }}
|
||
|
displayName: Check rustfmt
|
||
|
pool:
|
||
|
vmImage: ubuntu-16.04
|
||
|
steps:
|
||
|
- template: install-rust.yml
|
||
|
parameters:
|
||
|
rust_version: stable
|
||
|
- script: |
|
||
|
rustup component add rustfmt
|
||
|
displayName: Install rustfmt
|
||
|
- script: |
|
||
|
cargo fmt --all -- --check
|
||
|
displayName: Check formatting
|