mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
26 lines
591 B
YAML
26 lines
591 B
YAML
jobs:
|
|
# Check formatting
|
|
- template: ci/azure-rustfmt.yml
|
|
parameters:
|
|
name: rustfmt
|
|
|
|
# Test with Rust stable
|
|
- template: ci/azure-test-stable.yml
|
|
parameters:
|
|
name: test_starship
|
|
displayName: Test starship
|
|
|
|
# Test with Rust nightly
|
|
- template: ci/azure-test-nightly.yml
|
|
parameters:
|
|
name: test_nightly
|
|
displayName: Check starship with nightly
|
|
|
|
# Run the integration tests in a Docker container
|
|
- job: test_docker
|
|
displayName: Test starship Docker
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- script: ./integration_test
|