[go: up one dir, main page]

runtime 0.3.0-alpha.2

Empowering everyone to build asynchronous software.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
jobs:
- job: rustfmt
  displayName: ${{ parameters.displayName }}
  pool:
    vmImage: ubuntu-16.04
  steps:
    - template: install-rust.yml
      parameters:
        rust_version: nightly
    - script: |
        rustup component add rustfmt
      displayName: Install rustfmt
    - script: |
        cargo fmt --all -- --check --unstable-features
      displayName: Check formatting