Skip to content

Commit

Permalink
test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
labrijisaad committed Apr 5, 2024
1 parent 3cf74b7 commit bca6542
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false # Important: This must be set for actions-js/push
fetch-depth: 0 # Important: Fetch all history for all tags and branches
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -25,8 +28,8 @@ jobs:
run: ruff --fix .
- name: Security Check with Bandit
run: bandit -r .
# Commit and push changes made by Black and Ruff
- name: Commit & Push changes
uses: actions-js/push@main
uses: actions-js/push@v1.4
with:
github_token: ${{ secrets.MY_GITHUB_TOKEN }}
branch: ${{ github.ref }}
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ def create_pipeline(**kwargs) -> Pipeline:
tags="model_training",
namespace="lightgbm_training_pipeline",
inputs=[
"X_train",
"y_train",
"X_test",
"y_test",
"X_train",
"y_train",
"X_test",
"y_test",
],
outputs=[
"lightgbm_model",
Expand Down

0 comments on commit bca6542

Please sign in to comment.