Add github actions CI; thanks @guilledk!
parent
2f8737af6a
commit
a526008a95
|
@ -0,0 +1,21 @@
|
|||
name: CI
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
mypy:
|
||||
name: 'pip install'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: chart_hacking
|
||||
- name: Setup python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
- name: Install dependencies
|
||||
run: pip install -e . --upgrade-strategy eager -r requirements.txt
|
||||
- name: Run piker
|
||||
run: piker
|
Loading…
Reference in New Issue