mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
22 lines
492 B
YAML
22 lines
492 B
YAML
parameters:
|
|
- name: VSCODE_CLI_TARGETS
|
|
default: []
|
|
type: object
|
|
- name: VSCODE_CLI_RUST_CHANNEL
|
|
type: string
|
|
default: stable
|
|
|
|
steps:
|
|
- template: ./install-rust-posix.yml
|
|
parameters:
|
|
targets: []
|
|
channel: ${{ parameters.VSCODE_CLI_RUST_CHANNEL }}
|
|
|
|
- script: rustup component add clippy && cargo clippy -- -D warnings
|
|
workingDirectory: cli
|
|
displayName: Clippy lint
|
|
|
|
- script: cargo test
|
|
workingDirectory: cli
|
|
displayName: Run unit tests
|