We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6061157 commit 801b855Copy full SHA for 801b855
1 file changed
test/action.yaml
@@ -51,10 +51,10 @@ runs:
51
echo "manager=poetry" >> $GITHUB_OUTPUT
52
elif [[ -f "uv.lock" ]]; then
53
echo "manager=uv" >> $GITHUB_OUTPUT
54
- elif [[ -f "requirements.txt" ]]; then
+ elif [[ -f "requirements.txt" ]] || [[ -f "pyproject.toml" ]]; then
55
echo "manager=pip" >> $GITHUB_OUTPUT
56
else
57
- echo "::error::No package manager configuration found (poetry.lock/uv.lock/requirements.txt)"
+ echo "::error::No package manager configuration found (poetry.lock/uv.lock/requirements.txt/pyproject.toml)"
58
exit 1
59
fi
60
0 commit comments