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 20bdede commit 5c91941Copy full SHA for 5c91941
.github/actions/setup/action.yml
@@ -25,13 +25,6 @@ runs:
25
id: env-check
26
shell: bash
27
run: |
28
- # Check if python is installed
29
- if command -v python &> /dev/null; then
30
- echo "python_installed=true" >> $GITHUB_OUTPUT
31
- else
32
- echo "python_installed=false" >> $GITHUB_OUTPUT
33
- fi
34
-
35
# Determine cache type based on available lockfile
36
if [ -f poetry.lock ]; then
37
echo "cache_type=poetry" >> $GITHUB_OUTPUT
@@ -44,7 +37,6 @@ runs:
44
fi
45
38
46
39
- name: Set up Python 3.13
47
- if: steps.env-check.outputs.python_installed == 'false'
48
40
uses: actions/setup-python@v5
49
41
with:
50
42
python-version: "3.13"
0 commit comments