Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-08-29 17:28:19 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-08-29 17:28:19 +0300
commitfad902f269504e4bba3100278b345eb0fd11fbde (patch)
tree298c66fcce39f1fefdc6df2fd52d5e36a531ee99 /.gitlab-ci.yml
parenta90f1424241f683886ead0b07bbb7de545b88fae (diff)
ci: Update liniting tools
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 63af22d08..27d35aa27 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,6 +24,7 @@ test-codespell:
image: gajim-test
stage: test
script:
+ - codespell --version
- codespell gajim
interruptible: true
@@ -37,6 +38,7 @@ test-pyright:
- pip install git+https://dev.gajim.org/gajim/python-nbxmpp.git
- pip install git+https://dev.gajim.org/gajim/omemo-dr.git
- pip install --config-settings=config=Gtk3,Gdk3,GtkSource4 git+https://github.com/pygobject/pygobject-stubs.git
+ - pyright --version
- pyright
interruptible: true
@@ -47,6 +49,7 @@ test-ruff:
- changes:
- "**/*.py"
script:
+ - ruff --version
- ruff .
interruptible: true
@@ -57,6 +60,7 @@ test-isort:
- changes:
- "**/*.py"
script:
+ - isort --version
- isort --check .
interruptible: true