Skip to content

dx_summary for sdi

dx_summary for sdi #66

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
# TODO: match production more cosely: v3.7.3 via miniconda
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8
pip install mypy
- name: run tests and static analisis
run: |
make