Skip to content

Commit

Permalink
Fix workflow configs
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknyquist committed Dec 12, 2023
1 parent fd08237 commit f7c9093
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
# Display the Python version being used
- name: Display Python version
run: python -c "import sys; print(sys.version)"
# Install package requirements
- name: Install package requirements
run: pip install -r requirements.txt
# Install the package using the setup.py
- name: Install package
run: python setup.py install
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
# Display the Python version being used
- name: Display Python version
run: python -c "import sys; print(sys.version)"
# Install package requirements
- name: Install package requirements
run: pip install -r requirements.txt
# Install the package using the setup.py
- name: Install package
run: python setup.py install
Expand Down

0 comments on commit f7c9093

Please sign in to comment.