blob: 712ce0c4258fbe7bd397f8b231162a7e90356300 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
stages: # List of stages for jobs, and their order of execution
- test
net462-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- "dir "
- "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj"
|