We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 311d31b commit 94991cdCopy full SHA for 94991cd
.github/workflows/ci.yml
@@ -70,6 +70,12 @@ jobs:
70
with:
71
fetch-depth: 0 # Fetch all history for all tags and branches
72
73
+ - name: Check CI environment variable
74
+ run: |
75
+ echo "CI=$CI"
76
+ echo "CI (from env)=$(env | grep '^CI=')"
77
+ python -c "import os; print('CI (python):', repr(os.getenv('CI')))"
78
+
79
- name: Set up Python ${{ matrix.python-version }}
80
uses: actions/setup-python@v5
81
0 commit comments