Skip to content

[FSTORE-1446] Merge GitHub Actions #24

[FSTORE-1446] Merge GitHub Actions

[FSTORE-1446] Merge GitHub Actions #24

name: optional-dependency
on: pull_request
env:
APP_API_KEY: ${{ secrets.APP_API_KEY }}
ENABLE_HOPSWORKS_USAGE: "false"
jobs:
unit_tests_no_great_expectations:
name: Unit Testing (No Great Expectations)
runs-on: ubuntu-latest
steps:
- name: Set Timezone
run: sudo timedatectl set-timezone UTC
- uses: actions/checkout@v4
- name: Copy README
run: cp README.md python/
- uses: actions/setup-python@v5
name: Setup Python
with:
python-version: "3.10"
cache: "pip"
cache-dependency-path: "python/setup.py"
- run: pip install -e python[python,dev-no-opt]
- name: Run Pytest suite
env:
ENABLE_HOPSWORKS_USAGE: "false"
run: pytest python/tests