Skip to content

Add test coverage GH action #2

Add test coverage GH action

Add test coverage GH action #2

# Copyright 2024 The Nephio Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "Go test coverage"
on:
push:
paths-ignore:
- "build/**"
- "deployments/**"
- "docs/**"
- "examples/**"
- "release/**"
- "scripts/**"
pull_request:
paths-ignore:
- "build/**"
- "deployments/**"
- "docs/**"
- "examples/**"
- "release/**"
- "scripts/**"
permissions:
contents: write
jobs:
coverage:
name: Go test coverage check
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version: '1.22.2'
- name: generate test coverage
run: make test
- name: check test coverage
uses: vladopajic/go-test-coverage@v2
with:
# Configure action using config file (option 1)
config: ./.github/.testcoverage.yaml
git-branch: badges
git-token: ${{ secrets.GITHUB_TOKEN }}