Skip to content

Commit 21462b2

Browse files
cclaussNusnus
authored andcommitted
GitHub Action: pip_install_librabbitmq
`pip install librabbitmq` on `python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]`
1 parent 589d88b commit 21462b2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: pip_install_librabbitmq
2+
on:
3+
push:
4+
branches: [main, master]
5+
pull_request:
6+
branches: [main, master]
7+
jobs:
8+
pip_install_librabbitmq:
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
module:
13+
- librabbitmq
14+
- git+https://github.com/celery/librabbitmq.git
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v5
19+
- uses: actions/setup-python@v6
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
allow-prereleases: true
23+
- run: pip install --upgrade pip
24+
- run: pip install build setuptools>=75.1.0 wheel ${{ matrix.module }}

0 commit comments

Comments
 (0)