-
Notifications
You must be signed in to change notification settings - Fork 12
58 lines (49 loc) · 1.43 KB
/
pr-actions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: PR-Actions
on: pull_request
jobs:
Linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8' ]
name: Linting Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run Linting
run: |
pip install black flake8
make lint
PyTest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.7', '3.4', '3.5', '3.6', '3.7', '3.8']
pika-version: ['0.13.1', '1.1.0']
exclude:
- python-version: '3.9'
pika-version: '0.13.1'
- python-version: '3.7'
pika-version: '0.13.1'
- python-version: '3.6'
pika-version: '0.13.1'
- python-version: '3.5'
pika-version: '0.13.1'
- python-version: '3.4'
pika-version: '0.13.1'
name: PyTests Python ${{ matrix.python-version }} - PIKA ${{ matrix.pika-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Make Deps
run: make deps
- name: Install PIKA
run: pip install pika==${{ matrix.pika-version }}
- name: Run Tests
run: make test