Skip to content

Commit

Permalink
Added PIKA Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Dec 7, 2020
1 parent 6a31543 commit 41013f7
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/pr-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,40 @@ jobs:
strategy:
matrix:
python-version: [ '2.7', '3.4', '3.5', '3.6', '3.7', '3.8', 'pypy2', 'pypy3' ]
name: Python ${{ matrix.python-version }} Linting
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
make lint
- name: Run Tests
run: make test

0 comments on commit 41013f7

Please sign in to comment.