-
Notifications
You must be signed in to change notification settings - Fork 12
47 lines (39 loc) · 1.17 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
name: PR-Actions
on: pull_request
jobs:
PR-Tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.7', '3.4', '3.5', '3.6', '3.7', '3.8', 'pypy2', 'pypy3' ]
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: Linting 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: Coverage
run: make coverage
- name: Run Linting
run: |
pip install black flake8
make lint
- name: Run Tests
run: make test