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 35dd28d commit bc063d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install Python plugin dependencies
- name: Install Python venv
if: matrix.os == 'macos-latest'
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
python3 -m venv .venv
source .venv/bin/activate
fi
python3 -m pip install funppy
python3 -m venv .venv
source .venv/bin/activate
- name: Install Python plugin dependencies
run: python3 -m pip install funppy
- name: Checkout code
uses: actions/checkout@v2
- name: Run coverage
Expand Down

0 comments on commit bc063d3

Please sign in to comment.