Skip to content

Add ModelPack created annotation to manifests #1714

Add ModelPack created annotation to manifests

Add ModelPack created annotation to manifests #1714

Workflow file for this run

name: Validate PRs
on:
pull_request:
branches: [ main ]
jobs:
check-sources:
name: Check sources
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: 'go.mod'
- name: Check go.mod
shell: bash
run: |
go mod tidy
if ! git diff --quiet; then
echo "Go modules need tidying (go mod tidy)"
exit 1
fi
- name: Check format
shell: bash
run: |
go fmt ./...
if ! git diff --quiet; then
echo "Files are not formatted (go fmt ./...)"
exit 1
fi
- name: Check license headers
shell: bash
run: |
go install github.com/google/addlicense@latest
if ! addlicense --check -s -l apache -c "The KitOps Authors." $(find . -name '*.go'); then
echo "License headers missing from Go files (see above)."
echo "Install addlicense via 'go install github.com/google/addlicense@latest'"
echo "And run 'addlicense -s -l apache -c \"The KitOps Authors.\" \$(find . -name '*.go')'"
exit 1
fi
- name: Generate embeds
run: |
go generate ./...
- name: Check build
shell: bash
run: |
if ! go build -o kit; then
echo "Project does not build"
exit 1
fi
- name: Run tests
shell: bash
run: |
if ! go test ./... -v; then
echo "Project tests failed"
exit 1
fi
- name: Test Vitepress includes
shell: bash
run: |
grep -rnw '@include' --exclude-dir docs/node_modules docs | while read -r line; do
file="${line%%:*}"
include="${line##*@include: }"
include="${include%%-->}"
expected="$(dirname "$file")/$include"
if [ ! -f "$expected" ]; then
echo "Broken include in $file: path $expected does exist"
exit 1
fi
done
- name: Check for trailing whitespace
shell: bash
run: |
files=$(grep -E -lI --exclude '*.svg' --exclude 'docs/*' --exclude 'frontend/*' " +$" $(git ls-files) || true)
if [ ! -z $files ]; then
echo "Trailing whitespace in files:"
echo "$files"
exit 1
fi
- name: Upload build artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: pr-artifacts-${{ matrix.os }}
retention-days: 3
path: |
./kit*
check-container-build:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Check kit container build
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
with:
platforms: linux/amd64,linux/arm64
push: false
context: .
file: build/dockerfiles/Dockerfile
build-args: |
KIT_VERSION=${{ github.ref_name }}