Skip to content

Commit d2f3eac

Browse files
committed
add py3.9 to the testing
1 parent ff5510e commit d2f3eac

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test-and-train.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8]
16+
python-version: [3.7, 3.8, 3.9]
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python ${{ matrix.python-version }}
@@ -22,8 +22,7 @@ jobs:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies
2424
run: |
25-
python -m pip install --upgrade pip
26-
python -m pip install -e ".[test]"
25+
make install
2726
- name: Lint with flake8 & black
2827
run: |
2928
make lint
@@ -50,8 +49,7 @@ jobs:
5049
python-version: 3.7
5150
- name: Install dependencies
5251
run: |
53-
python -m pip install --upgrade pip
54-
python -m pip install -e .
52+
make install
5553
- name: Train the model
5654
run: |
5755
make train

0 commit comments

Comments
 (0)