File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -2,29 +2,28 @@ name: Pytest for pca
2
2
on : [push]
3
3
4
4
jobs :
5
- example-1 :
6
- name : Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
5
+ test :
6
+ name : Pytest (${{ matrix.python-version }}, ${{ matrix.os }})
7
7
runs-on : ${{ matrix.os }}
8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
11
os : ["ubuntu-latest"]
12
- python-version : ["3.8", "3.10 "]
12
+ python-version : ["3.12 "]
13
13
steps :
14
- - uses : actions/checkout@v2
15
- - uses : conda-incubator/setup-miniconda@v2
14
+ - uses : actions/checkout@v3
15
+ - name : Set up Python ${{ matrix.python-version }}
16
+ uses : actions/setup-python@v4
16
17
with :
17
- auto-update-conda : true
18
18
python-version : ${{ matrix.python-version }}
19
+ cache : ' pip'
19
20
- name : Install dependencies
20
21
run : |
21
22
python -m pip install --upgrade pip
22
- # install pandas because we have unittests that include pd.DataFrame()
23
+ pip install -r requirements_additional.txt
23
24
pip install -r requirements.txt
24
- pip install pandas
25
- pip install sklearn
25
+ pip install pytest
26
+ pip install .
26
27
- name : Test with pytest
27
28
run : |
28
- pip install pytest
29
29
pytest
30
-
Original file line number Diff line number Diff line change
1
+ pandas
You can’t perform that action at this time.
0 commit comments