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

pre-push-tests.sh « scripts - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b24908f700c4b71b7882dc713469dfce4e92e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# exit when any command fails
set -e

GREEN='\033[0;32m'


pyright
echo "${GREEN}pyright: \t OK"
ruff .
echo "${GREEN}ruff: \t\t OK"
codespell gajim
echo "${GREEN}codespell: \t OK"
echo "${GREEN}ready to push"