diff options
author | Megan <megan@cryptoworkshop.com> | 2022-07-15 06:46:19 +0000 |
---|---|---|
committer | Megan <megan@cryptoworkshop.com> | 2022-07-15 06:46:19 +0000 |
commit | fe1d69ffb642fb7cf4082381650e62c765607a97 (patch) | |
tree | f9235ec808ac67a61459d6a53d63216b18ddc492 | |
parent | SIKE performance (diff) | |
download | BouncyCastle.NET-ed25519-fe1d69ffb642fb7cf4082381650e62c765607a97.tar.xz |
Initial test workflow
-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" |