Update requirements and simplify CI workflow for quality checks - Added new dependencies: kaleido, hyperopt, and shap to requirements.txt. - Refactored the quality gate workflow to use a template for improved maintainability and reduced complexity.
16 lines
392 B
YAML
16 lines
392 B
YAML
name: Quality gate
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
types: [ opened, synchronize, reopened ]
|
|
|
|
jobs:
|
|
quality-gate:
|
|
uses: Aignosi/github_workflow_templates/.github/workflows/dataops-module-quality-gate.yml@main
|
|
permissions: write-all
|
|
with:
|
|
project_name: 'laborious'
|
|
repositories: 'sientia-dataops-library, sientia-mlops-library'
|
|
secrets: inherit |