[gedit-plugins/ci] Fix CI



commit 0b5e841ecc43290fe337da43375d7b743f818cad
Author: Jordi Mas <jmas softcatala org>
Date:   Wed Apr 28 21:35:52 2021 +0200

    Fix CI

 .gitlab-ci.yml     | 17 +++++++++++++++++
 .gitlab-ci.yml.old | 35 -----------------------------------
 2 files changed, 17 insertions(+), 35 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..5ad812e
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+image: ubuntu:devel
+
+stages:
+    - static_analysis
+
+
+static_analysis:
+  before_script:
+    - export DEBIAN_FRONTEND=noninteractive
+    - apt-get update -y
+    - apt-get install python3 python3-pip python3-dbus  -y
+    - python3 -m pip install flake8
+
+  script:
+    - cd plugins
+    - flake8 --select=F --ignore=F401,F841
+


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]