Bump scikit-learn from 1.6.0 to 1.6.1 #261
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: CI pipeline for repo | |
on: [push] | |
jobs: | |
smoke-test-model-training: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run model training smoke test | |
run: ./batect smoke-test-model-training | |
api-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Train model (to create local model artifact needed by API) | |
run: ./batect smoke-test-model-training | |
- name: Run API tests | |
run: ./batect api-test | |
train-model: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Train model | |
run: ./batect train-model | |
needs: [smoke-test-model-training, api-test] |