Skip to content

Commit f55b56d

Browse files
committed
fixing deploy workflow 4
1 parent 33c965b commit f55b56d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/deploy.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,17 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
os: [ubuntu-latest]
25-
python-version: ['3.10']
24+
os: ["ubuntu-latest", "macos-latest"]
25+
python-version: ["3.10"]
2626

2727
steps:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2929
- uses: actions/checkout@v4
30-
- uses: actions/setup-python@v5
31-
with:
32-
python-version: '3.10'
33-
- uses: conda-incubator/setup-miniconda@v2
30+
- uses: conda-incubator/setup-miniconda@v3
3431
with:
3532
activate-environment: test
3633
auto-activate-base: false
34+
python-version: ${{ matrix.python-version }}
3735

3836
- name: Install
3937
shell: bash -l {0}
@@ -50,9 +48,11 @@ jobs:
5048
run: |
5149
mkdir empty
5250
cd empty
53-
conda install pytest-cov
54-
pytest -v --cov=orientpy ../orientpy/tests/
55-
bash <(curl -s https://codecov.io/bash)
51+
conda install pytest
52+
pytest ../orientpy/tests/
53+
# conda install pytest-cov
54+
# pytest -v --cov=orientpy ../orientpy/tests/
55+
# bash <(curl -s https://codecov.io/bash)
5656

5757
- name: Make docs
5858
if: matrix.python-version == '3.10'

0 commit comments

Comments
 (0)