Skip to content

Commit

Permalink
fix: install python dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
debugtalk committed Aug 21, 2024
1 parent 0373b26 commit 35dd28d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Install Python plugin dependencies
run: |
python3 -m venv .venv
source .venv/bin/activate
if [ "$RUNNER_OS" == "macOS" ]; then
python3 -m venv .venv
source .venv/bin/activate
fi
python3 -m pip install funppy
- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit 35dd28d

Please sign in to comment.