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 6bd7156
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install Python plugin dependencies
- name: Install Python plugin dependencies for macos
if: matrix.os == 'macos-latest'
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install funppy
- name: Install Python plugin dependencies for linux/windows
if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'
run: python3 -m pip install funppy
- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit 6bd7156

Please sign in to comment.