CI/CD for Machine Learning
Ravi Bhadauria
Machine Learning Engineer
# Name of the workflow name: CI
# Events that trigger workflow on: push: branches: [ "main" ]
# Define jobs and runners jobs: build: runs-on: ubuntu-latest
# Define steps steps: - name: Run a multi-line script run: | echo Hello, world! echo Add other actions to build, echo test, and deploy your project.
name: CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Run a multi-line script
run: |
echo Hello, world!
echo Add other actions to build,
echo test, and deploy your project.
CI/CD for Machine Learning