mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-17 00:00:11 +02:00
20 lines
418 B
YAML
20 lines
418 B
YAML
jobs:
|
|
- job: ${{ parameters.name }}
|
|
displayName: ${{ parameters.displayName }}
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
|
|
steps:
|
|
- template: azure-install-rust.yml
|
|
parameters:
|
|
rust_version: ${{ parameters.rust }}
|
|
|
|
- template: azure-patch-crates.yml
|
|
|
|
- script: cargo check --all
|
|
displayName: cargo check --all
|
|
|
|
# Check benches
|
|
- script: cargo check --benches --all
|
|
displayName: Check benchmarks
|