We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25b1bca commit 6bd7156Copy full SHA for 6bd7156
.github/workflows/unittest.yml
@@ -21,7 +21,14 @@ jobs:
21
uses: actions/setup-go@v2
22
with:
23
go-version: ${{ matrix.go-version }}
24
- - name: Install Python plugin dependencies
+ - name: Install Python plugin dependencies for macos
25
+ if: matrix.os == 'macos-latest'
26
+ run: |
27
+ python3 -m venv .venv
28
+ source .venv/bin/activate
29
+ python3 -m pip install funppy
30
+ - name: Install Python plugin dependencies for linux/windows
31
+ if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'
32
run: python3 -m pip install funppy
33
- name: Checkout code
34
uses: actions/checkout@v2
0 commit comments