Skip to content

Commit

Permalink
Added "upgrade pip" to Github Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlaw committed May 15, 2024
1 parent 369c43e commit 36a34a7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Display Python Version
run: python -c "import sys; print(sys.version)"
shell: bash
- name: Upgrade Pip
run: python -m pip install --upgrade pip
shell: bash
- name: Generate Minimum Requirements File
run: sed 's/>/=/g' requirements.txt | sed 's/$/\.*/g' > requirements.min.txt
shell: bash
Expand Down Expand Up @@ -62,6 +65,9 @@ jobs:
- name: Display Python Version
run: python -c "import sys; print(sys.version)"
shell: bash
- name: Upgrade Pip
run: python -m pip install --upgrade pip
shell: bash
- name: Install STUMPY And Other Dependencies
run: python -m pip install --editable .[ci]
shell: bash
Expand Down Expand Up @@ -113,6 +119,9 @@ jobs:
- name: Display Python Version
run: python -c "import sys; print(sys.version)"
shell: bash
- name: Upgrade Pip
run: python -m pip install --upgrade pip
shell: bash
- name: Install STUMPY And Other Dependencies
run: python -m pip install --editable .[ci]
shell: bash
Expand All @@ -138,4 +147,4 @@ jobs:
run: coverage report -m --fail-under=100 --skip-covered --omit=docstring.py,min.py,stumpy/cache.py
shell: bash
- name: Upload Coverage Tests Results
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v4

0 comments on commit 36a34a7

Please sign in to comment.