Skip to content

Commit

Permalink
try explicit pypy version
Browse files Browse the repository at this point in the history
  • Loading branch information
auvipy committed Dec 29, 2022
1 parent 15b178b commit 41cfe53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,pypy3]
python-version: [3.7,3.8,3.9,pypy-3.9]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
Expand All @@ -26,15 +26,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,pypy3]
python-version: [3.7,3.8,3.9,pypy-3.9]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
- name: Build rabbitmq:tls container
run: docker build -t rabbitmq:tls .
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@vv
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -45,7 +45,7 @@ jobs:
run: |
CELERY_ENABLE_SPEEDUPS=1 python setup.py develop
tox -v -e ${{ matrix.python-version }}-integration-rabbitmq -- -v
if: ${{ matrix.python-version != 'pypy3'}}
if: ${{ matrix.python-version != 'pypy-3.9'}}

#################### Linters and checkers ####################
lint:
Expand Down

0 comments on commit 41cfe53

Please sign in to comment.