We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0077a9 commit 25ee2d8Copy full SHA for 25ee2d8
.github/workflows/code-counter-CI.yml
@@ -16,5 +16,9 @@ jobs:
16
uses: actions/setup-python@v3
17
with:
18
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
23
- name: Test with pytest
24
run: python -m unittest discover -s tests -p "test_*.py"
requirements.txt
@@ -0,0 +1,3 @@
1
+numpy
2
+matplotlib
3
+requests
0 commit comments