Skip to content

Bump pydantic from 2.10.5 to 2.10.6 #262

Bump pydantic from 2.10.5 to 2.10.6

Bump pydantic from 2.10.5 to 2.10.6 #262

Workflow file for this run

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]