Run py3.9 and tests in CI
parent
0228db7811
commit
beecea52e4
|
@ -7,15 +7,22 @@ jobs:
|
||||||
name: 'pip install'
|
name: 'pip install'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: chart_hacking
|
ref: master
|
||||||
|
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: '3.8'
|
python-version: '3.9'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -e . --upgrade-strategy eager -r requirements.txt
|
run: pip install -e . --upgrade-strategy eager -r requirements.txt
|
||||||
- name: Run piker
|
|
||||||
|
- name: Run piker cli
|
||||||
run: piker
|
run: piker
|
||||||
|
|
||||||
|
- name: Run test suite
|
||||||
|
run: pytest tests
|
||||||
|
|
Loading…
Reference in New Issue