[FSTORE-1446] Merge GitHub Actions #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |