Files
zot/.github/workflows/branch-cov.yaml
T
Ramkumar Chinchani 97ab0e2568 chore: fix dependabot alerts (#3380)
* chore: fix dependabot alerts

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>

* ci: bump up golang version to 1.24.x

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>

---------

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>
2025-09-11 11:11:38 +03:00

41 lines
1.0 KiB
YAML

name: "Branch coverage"
on:
push:
branches:
- main
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
permissions: read-all
jobs:
branch-cov:
runs-on: ubuntu-latest
name: coverage
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
cache: false
go-version: 1.24.x
- name: Install dependencies
run: |
cd $GITHUB_WORKSPACE
sudo apt-get update
mkdir -p test/data
cd test/data
../scripts/gen_certs.sh
htpasswd -bBn test test123 > htpasswd
go install github.com/rillig/gobco@latest
- name: Check for branch coverage
continue-on-error: true
run: |
cd $GITHUB_WORKSPACE
for i in $(find . -type f \( -name "*.go" -not -name "*_test.go" -not -name "generated.go" \)); do
echo $i;
gobco -test '-tags=sync,search,scrub,metrics' $i;
gobco -test $i;
done