We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e3d3d commit c13cd14Copy full SHA for c13cd14
.github/workflows/pre-check-plugin.yaml
@@ -71,6 +71,13 @@ jobs:
71
exit 1
72
fi
73
74
+ - name: Check for Disallowed Virtualenv Directories
75
+ run: |
76
+ if find "${{ env.PLUGIN_PATH }}" -maxdepth 1 -type d \( -name ".venv*" -o -name "venv*" \) | grep -q .; then
77
+ echo "!!! Please remove .venv or venv* directory in plugin path before submitting the PR"
78
+ exit 1
79
+ fi
80
+
81
- name: Check If Version Exists
82
run: |
83
# get version, author, name
@@ -120,6 +127,11 @@ jobs:
120
127
121
128
cd -
122
129
uv run python .scripts/validator/test-plugin-install.py -d ${{ env.PLUGIN_PATH }}
130
131
+ - name: Clean Venv Created by uv
132
133
+ cd ${{ env.PLUGIN_PATH }}
134
+ rm -rf .venv
123
135
124
136
- name: Check Packaging
125
137
0 commit comments