Skip to content

Merge branch 'master' into celery-5-master-fix #5

Merge branch 'master' into celery-5-master-fix

Merge branch 'master' into celery-5-master-fix #5

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:

Check failure on line 15 in .github/workflows/test-py3.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-py3.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
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