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 bc063d3 commit e6ed5e2
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 @@ -21,12 +21,14 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install Python venv
- name: Install Python plugin dependencies for macos
if: matrix.os == 'macos-latest'
run: |
python3 -m venv .venv
source .venv/bin/activate
- name: Install Python plugin dependencies
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 e6ed5e2

Please sign in to comment.