Skip to content

Commit

Permalink
Use more recent pip
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Dec 2, 2020
1 parent f96dea0 commit d9b74e5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,20 @@ jobs:
manylinux_x86_64:
runs-on: ubuntu-latest
# We use a regular Python matrix entry to share as much code as possible.
strategy:
matrix:
python-version: [3.9]

steps:
- name: checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: pip install -U pip
- name: Build and test gevent
# An alternate way to do this is to run the container directly with a uses:
# and then the script runs inside it. That may work better with caching.
Expand Down

0 comments on commit d9b74e5

Please sign in to comment.