Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/operator-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,24 @@ jobs:
else
make ${{ matrix.make-target }}
fi
# Upload coverage to Coveralls using goveralls (Go-specific tool)
- name: Upload coverage to Coveralls
if: matrix.test-suite == 'e2e' && matrix.k8s-version == '1.34.0'
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: |
# Install goveralls
go install github.com/mattn/goveralls@latest
# Run goveralls from operator directory (where go.mod is located)
cd operator
# Verify coverage file exists
if [ ! -f reporting/cover.out ]; then
echo "ERROR: Coverage file not found at reporting/cover.out"
ls -la reporting/ || echo "reporting directory does not exist"
exit 1
fi
# Upload coverage (run from operator/ directory, path is relative to operator/)
goveralls -coverprofile=reporting/cover.out -service=github -repotoken=$COVERALLS_TOKEN

# Build multi-platform container image and push to registry
build-and-push-operator:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# skyhook

[![Pipeline Status](https://github.com/NVIDIA/skyhook/actions/workflows/operator-ci.yaml/badge.svg)](https://github.com/NVIDIA/skyhook/actions/workflows/operator-ci.yaml)
[![Coverage Status](https://coveralls.io/repos/github/NVIDIA/skyhook/badge.svg)](https://coveralls.io/github/NVIDIA/skyhook)
[![Go Report Card](https://goreportcard.com/badge/github.com/NVIDIA/skyhook/operator)](https://goreportcard.com/report/github.com/NVIDIA/skyhook/operator)

**Skyhook** is a Kubernetes-aware package manager for cluster administrators to safely modify and maintain underlying host declaratively at scale.

## Why Skyhook?
Expand Down