46 lines
839 B
YAML
46 lines
839 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
basic_install:
|
|
name: 'pip install'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Install dependencies
|
|
run: pip install -e . --upgrade-strategy eager -r requirements.txt
|
|
|
|
- name: Run piker cli
|
|
run: piker
|
|
|
|
testing:
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Install dependencies
|
|
run: pip install -U . -r requirements-test.txt --upgrade-strategy eager
|
|
|
|
- name: Test suite
|
|
run: pytest tests -rs
|