Skip to content

Feature/data 1811 databricks io #80

Feature/data 1811 databricks io

Feature/data 1811 databricks io #80

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.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- 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