Skip to content

Commit bece796

Browse files
committed
Run Rust tests on Azure Pipelines
1 parent 0141b59 commit bece796

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.azure-pipelines/steps/-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
steps:
22
- powershell: |
3+
cargo test --all
34
.\bin\test.ps1
45
displayName: Run tests (Windows)
56
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
67

78
- bash: |
9+
set -e
10+
cargo test --all
811
./bin/test
912
displayName: Run tests
1013
condition: and(succeeded(), ne(variables['Agent.OS'], 'Windows_NT'))

0 commit comments

Comments
 (0)