Skip to content

[pull] main from kubeflow:main #291

[pull] main from kubeflow:main

[pull] main from kubeflow:main #291

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
pull_request:
paths-ignore:
- "LICENSE*"
- "DOCKERFILE*"
- "**.gitignore"
- "**.md"
- "**.txt"
- ".github/ISSUE_TEMPLATE/**"
- ".github/dependabot.yml"
- "docs/**"
- "scripts/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Build
run: make clean build
- name: Check if there are uncommitted file changes
run: |
clean=$(git status --porcelain)
if [[ -z "$clean" ]]; then
echo "Empty git status --porcelain: $clean"
else
echo "Uncommitted file changes detected: $clean"
git diff
exit 1
fi
- name: Unit tests
run: make test-cover