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 25b1bca commit b08f170
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Install Python plugin dependencies
run: python3 -m pip install funppy
run:
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install funppy
- name: Checkout code
uses: actions/checkout@v2
- name: Run coverage
Expand Down

0 comments on commit b08f170

Please sign in to comment.