Skip to content

Commit a366a9f

Browse files
authored
Merge pull request #3 from Programming-The-Next-Step-2026/week-3
Week 3
2 parents 772ee32 + 6f8de52 commit a366a9f

23 files changed

Lines changed: 2355 additions & 289 deletions

.DS_Store

0 Bytes
Binary file not shown.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Python tests
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
15+
with:
16+
python-version: "3.12"
17+
18+
- name: Install package and test tools
19+
run: |
20+
python -m pip install --upgrade pip
21+
python -m pip install -e . pytest
22+
23+
- name: Download spaCy model
24+
run: python -m spacy download en_core_web_sm
25+
26+
- name: Run unit tests
27+
run: pytest

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ __pycache__/
1313
.idea/
1414

1515
# macOS
16-
.DS_Store
16+
.DS_Store.DS_Store

0 commit comments

Comments
 (0)