diff options
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..3e9c9cdf1 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,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" |