Thanks to visit codestin.com
Credit goes to github.com

Skip to content

✨ feat: Update CronJob and Multiversion tutorials to use Status Conditions #350

✨ feat: Update CronJob and Multiversion tutorials to use Status Conditions

✨ feat: Update CronJob and Multiversion tutorials to use Status Conditions #350

Workflow file for this run

name: Coverage
on:
push:
paths-ignore: ['**/*.md']
pull_request:
paths-ignore: ['**/*.md']
jobs:
coverage:
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Remove pre-installed kustomize
run: sudo rm -f /usr/local/bin/kustomize
- name: Run tests with coverage
run: make test-coverage
- name: Upload coverage to Coveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage-all.out