feat: Use grafana/k6exec API for creating cobra.Command factory funct… #128
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- "docs/**" | |
- README.md | |
- "releases/**" | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{matrix.platform}} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.4" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: go test -race -count 1 ./... | |
- name: Coverage Test | |
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'master' }} | |
run: go test -count 1 -coverprofile=coverage.txt ./... | |
- name: Upload Coverage | |
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'master' }} | |
uses: codecov/codecov-action@v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: grafana/k6exec | |
- name: Generate Go Report Card | |
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'master' }} | |
uses: creekorful/goreportcard-action@v1.0 |