Skip to content

Commit cafc8dc

Browse files
Fix PIP installation
1 parent 8835ad8 commit cafc8dc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ jobs:
5252
restore-keys: |
5353
${{ runner.os }}-go-
5454
- name: Install CCM
55-
run: pip install "git+https://github.com/riptano/ccm.git@${CCM_VERSION}"
55+
run: |
56+
python3 -m venv ~/venv
57+
~/venv/bin/pip install "git+https://github.com/riptano/ccm.git@${CCM_VERSION}"
58+
echo "PATH=~/venv/bin:$PATH" >> $GITHUB_ENV
5659
- name: Start cassandra nodes
5760
run: |
5861
VERSION=${{ matrix.cassandra_version }}

0 commit comments

Comments
 (0)