Skip to content

Commit 25ee2d8

Browse files
committed
🔧 create requirements.txt
1 parent f0077a9 commit 25ee2d8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/code-counter-CI.yml

+4
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,9 @@ jobs:
1616
uses: actions/setup-python@v3
1717
with:
1818
python-version: ${{ matrix.python-version }}
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
1923
- name: Test with pytest
2024
run: python -m unittest discover -s tests -p "test_*.py"

requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
numpy
2+
matplotlib
3+
requests

0 commit comments

Comments
 (0)