Skip to content

Commit 1010123

Browse files
committed
ci: fixed rabbitmq version
1 parent 67f593b commit 1010123

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Conventional Changelog Action
4545
id: changelog
4646
if: github.ref_name == 'main'
47-
uses: TriPSs/conventional-changelog-action@v3
47+
uses: TriPSs/conventional-changelog-action@v6
4848
with:
4949
github-token: ${{ github.token }}
5050
git-url: ${{ github.server_url != 'https://github.com' && 'git.yusufali.ca' || 'github.com' }}

.github/workflows/servc.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: 'Serv-C Unit Test'
22
on:
33
pull_request:
44
push:
5-
branches:
6-
- main
75

86
jobs:
97
servc:
@@ -23,7 +21,7 @@ jobs:
2321

2422
services:
2523
rabbitmq:
26-
image: rabbitmq:3
24+
image: rabbitmq
2725
env:
2826
RABBITMQ_DEFAULT_USER: guest
2927
RABBITMQ_DEFAULT_PASS: guest

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
services:
1717
rabbitmq:
18-
image: rabbitmq:3
18+
image: rabbitmq
1919
env:
2020
RABBITMQ_DEFAULT_USER: guest
2121
RABBITMQ_DEFAULT_PASS: guest
@@ -44,12 +44,6 @@ jobs:
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646

47-
- name: Type check
48-
run: |
49-
pip install mypy
50-
pip install types-PyYAML types-simplejson types-redis
51-
mypy servc
52-
5347
- name: Install dependencies
5448
run: |
5549
python -m pip install --upgrade pip
@@ -61,6 +55,12 @@ jobs:
6155
echo " worker.py" >> .coveragerc
6256
fi
6357
58+
- name: Type check
59+
run: |
60+
pip install mypy
61+
pip install types-PyYAML types-simplejson types-redis
62+
mypy servc
63+
6464
- name: Run tests
6565
env:
6666
CACHE_URL: redis://${{ github.server_url != 'https://github.com' && 'redis' || 'localhost' }}

0 commit comments

Comments
 (0)