Skip to content

Celery 5 master fix

Celery 5 master fix #6

Workflow file for this run

name: Test python 3
on:
push:
branches: [celery-5]
pull_request:
branches: [celery-5]
jobs:
Test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[all]
- name: Show python dependencies
run: |
pip freeze
- name: Run tests
run: |
py.test -vv tests/unit