Skip to content

Commit 0ef904a

Browse files
Update main.yml
1 parent d0b882a commit 0ef904a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ jobs:
77
matrix:
88
instance: [0, 1, 2, 3]
99
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
10+
- uses: getsentry/action-setup-venv@3a832a9604b3e1a4202ae559248f26867b467cc7 # v2.1.1
11+
with:
12+
python-version: 3.13.1
13+
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

Comments
 (0)