Skip to content

Commit

Permalink
celery-version: ['5.2.x', '5.3.x']
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jul 8, 2024
1 parent 2ae75a2 commit f786932
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
celery-version: ['5.2', '5.3']
celery-version: ['5.2.x', '5.3.x']
tornado-version: ['6.0']

steps:
Expand All @@ -23,11 +24,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install celery==${{ matrix.celery-version }}
pip install tornado==${{ matrix.tornado-version }}
pip install -r requirements/default.txt
pip install -r requirements/test.txt
pip install -r requirements/dev.txt
pip install celery==${{ matrix.celery-version }} \
tornado==${{ matrix.tornado-version }} \
-r requirements/default.txt \
-r requirements/test.txt \
-r requirements/dev.txt
- name: Lint with pylint
run: |
Expand Down

0 comments on commit f786932

Please sign in to comment.