Skip to content

DATA-1477 fix: one external sensor for multiple tasks in one DAG #37

DATA-1477 fix: one external sensor for multiple tasks in one DAG

DATA-1477 fix: one external sensor for multiple tasks in one DAG #37

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install -U pip setuptools
pip install virtualenv
pip install -U wheel
make install-dev
- name: Run tests
run: |
. venv/bin/activate
make test