diff options
| -rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bf0e745 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ + +src: + script: + - python3 /compArch/check.py + - python3 /compArch/test_A1_src.py + +report: + script: + - python3 /compArch/check.py + - python3 /compArch/test_A1_report.py + artifacts: + name: "report-$CI_COMMIT_REF_NAME" + paths: + - report.pdf + - report/report.pdf |