Skip to content

delete model

delete model #39

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
permissions: write-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: iterative/setup-cml@v2
- uses: actions/setup-python@v5
with:
python-version: '3.12.4'
- name: Install Packages
run: make requirements
- name: Format
run: make format
- name: Data Preprocessing
run: make data_preprocessing
- name: Train
run: make train
- name: Evaluation
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make eval
- uses: actions/upload-artifact@v4
with:
name: models/woe_lr.pickle
path: models/woe_lr.pickle
- name: Update Branch
env:
NAME: ${{ secrets.USER_NAME }}
EMAIL: ${{ secrets.USER_EMAIL }}
run: make update-branch USER_NAME=$NAME USER_EMAIL=$EMAIL