summaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
blob: 5cda672666bd1b4da74e99aefe53885610bf97c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
  - template: ci/azure-test-docker.yml
    parameters: 
      name: test_docker
      displayName: Test starship Docker