We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8042a7 commit c7198c5Copy full SHA for c7198c5
.github/workflows/quality-checks.yml
@@ -71,13 +71,15 @@ jobs:
71
72
# Install pip-licenses if not already installed
73
if ! poetry run pip show pip-licenses > /dev/null 2>&1; then
74
+ echo "pip-licenses is not detected. Installing..."
75
poetry run pip install pip-licenses
76
fi
77
78
LICENSES=$(poetry run pip-licenses)
79
INCOMPATIBLE_LIBS=$(echo "$LICENSES" | grep 'GPL' || true)
80
81
if [[ -z $INCOMPATIBLE_LIBS ]]; then
82
+ echo "Checked licenses are OK"
83
exit 0
84
else
85
echo "The following libraries were found which are not compatible with this project's license:"
0 commit comments