Add pipenv installation and dependency installation step

This commit is contained in:
2024-01-25 09:41:31 -05:00
parent abc86db155
commit 60ff502865
+4
View File
@@ -16,6 +16,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --deploy --ignore-pipfile
# You can test your matrix by printing the current Python version
- name: Run the tests with pytest
run: make test