Skip to content

Added files to support azure datalake storage #1231

Added files to support azure datalake storage

Added files to support azure datalake storage #1231

Workflow file for this run

name: Test
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
- release/*
workflow_call:
workflow_dispatch: {}
jobs:
pytest:
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
matrix:
python_version:
- "3.9"
install_version:
- "[dev]"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Cache pip
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Setup
run: |
set -ex
python -m pip install --upgrade pip wheel
python -m pip install -e .${{ matrix.install_version }}
- name: Run Tests
id: tests
run: |
set -ex
python3 -m pytest