Skip to content

Commit b0aedb0

Browse files
committed
Finishing test for github actions
1 parent 5725a9e commit b0aedb0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ccd-plugin-package.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: ["ubuntu-latest"] #, "macos-latest", "windows-latest"]
12-
python-version: ["3.9"]
11+
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
12+
python-version: ["3.9", "3.10", "3.11"]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: conda-incubator/setup-miniconda@v2
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
conda install --file requirements.txt -y
2626
27-
- name: Define a variable for site-packages location based on OS
27+
- name: Prepare extlibs
2828
shell: bash -el {0}
2929
run: |
3030
if [ ${{ matrix.os }} == 'windows-latest' ]; then
@@ -33,8 +33,9 @@ jobs:
3333
SITE_PACKAGES_PATH=$CONDA_PREFIX/lib/python${{ matrix.python-version }}/site-packages
3434
fi
3535
mv $SITE_PACKAGES_PATH ./extlibs
36+
rm -rf ./extlibs/plotly* ./extlibs/pip* ./extlibs/setuptools* ./extlibs/plotly*
3637
37-
# create a zip file with all the libraries
38+
# create a zip file with the extlibs
3839
- uses: vimtor/action-zip@v1
3940
with:
4041
files: extlibs

0 commit comments

Comments
 (0)