blob: 3e9c9cdf190bb04ecf922a65166fbdcc600ab1eb (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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:
- "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj"
|