File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,17 @@ jobs:
21
21
runs-on : ${{ matrix.os }}
22
22
strategy :
23
23
matrix :
24
- os : [ubuntu-latest]
25
- python-version : [' 3.10' ]
24
+ os : [" ubuntu-latest", "macos-latest" ]
25
+ python-version : [" 3.10" ]
26
26
27
27
steps :
28
28
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29
29
- 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
34
31
with :
35
32
activate-environment : test
36
33
auto-activate-base : false
34
+ python-version : ${{ matrix.python-version }}
37
35
38
36
- name : Install
39
37
shell : bash -l {0}
50
48
run : |
51
49
mkdir empty
52
50
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)
56
56
57
57
- name : Make docs
58
58
if : matrix.python-version == '3.10'
You can’t perform that action at this time.
0 commit comments