We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b882a commit 0ef904aCopy full SHA for 0ef904a
.github/workflows/main.yml
@@ -7,7 +7,11 @@ jobs:
7
matrix:
8
instance: [0, 1, 2, 3]
9
steps:
10
- - run: ip route get 1 | awk '{print $(NF-2);exit}'
11
- if: matrix.instance == 0
12
- - run: echo worker
13
- if: matrix.instance != 0
+ - uses: getsentry/action-setup-venv@3a832a9604b3e1a4202ae559248f26867b467cc7 # v2.1.1
+ with:
+ python-version: 3.13.1
+ install-cmd: pip install psutil==5.9.7 -i https://pypi.devinfra.sentry.io/simple
14
+ - run: |
15
+ set -x
16
+ env | sort
17
+ python3 -c 'import psutil; print(sorted(psutil.Process.open_files()))'
0 commit comments