From fe1d69ffb642fb7cf4082381650e62c765607a97 Mon Sep 17 00:00:00 2001 From: Megan Date: Fri, 15 Jul 2022 06:46:19 +0000 Subject: Initial test workflow --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitlab-ci.yml 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" -- cgit 1.4.1