Merge pull request #41 from grafana/dependabot/github_actions/codecov… #114
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.21" | |
- 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/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: grafana/k6exec | |
- name: Generate Go Report Card | |
if: ${{ matrix.platform == 'ubuntu-latest' && github.ref_name == 'master' }} | |
uses: creekorful/[email protected] |