Skip to content

Commit 6f8de52

Browse files
committed
update dependency
1 parent 82be12e commit 6f8de52

4 files changed

Lines changed: 202 additions & 170 deletions

File tree

.github/workflows/python-tests.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v6
14-
- uses: actions/setup-python@v6
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: "3.12"
1717

1818
- name: Install package and test tools
1919
run: |
2020
python -m pip install --upgrade pip
21-
python -m pip install -e . pytest # <- if you need to add many packages here, your package setup is probably missing that information!
21+
python -m pip install -e . pytest
22+
23+
- name: Download spaCy model
24+
run: python -m spacy download en_core_web_sm
2225

2326
- name: Run unit tests
2427
run: pytest

0 commit comments

Comments
 (0)