Skip to content

added new node type for dashboard query execution #2

added new node type for dashboard query execution

added new node type for dashboard query execution #2

name: databuilder PR
on:
pull_request:
paths:
- "databuilder/**"
- "common/**"
- "requirements-dev.txt"
jobs:
test-unit-python:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: ['3.7.x']
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install_deps && pip3 uninstall -y amundsen-common && pip3 install -e ../common
working-directory: ./databuilder
- name: Run python unit tests
run: make test
working-directory: ./databuilder