Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PECO-1078] Added CI Workflow to Python repo #223

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/code-quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
jobs:
run-unit-tests:
runs-on: ubuntu-latest
environment: azure-prod
env:
host: ${{ secrets.DATABRICKS_HOST }}
http_path: ${{ secrets.TEST_PECO_WAREHOUSE_HTTP_PATH }}
access_token: ${{ secrets.DATABRICKS_TOKEN }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
Expand Down Expand Up @@ -59,6 +64,11 @@ jobs:
#----------------------------------------------
- name: Run tests
run: poetry run python -m pytest tests/unit
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests e2e
run: poetry run python -m pytest tests/e2e
check-linting:
runs-on: ubuntu-latest
strategy:
Expand Down