Skip to content
check

GitHub Action

Golang Test Annotations

v0.8.0 Latest version

Golang Test Annotations

check

Golang Test Annotations

Given a test output of go test, the failed tests will be annotated

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Golang Test Annotations

uses: guyarb/[email protected]

Learn more about this action in guyarb/golang-test-annotations

Choose a version

golang-test-annotations

A github action which annotates failed tests.

GitHub Annotations

An example run can be found here

How to use

Add to your workflow the following contents:

name: pr

on:
  pull_request:
    branches: [ '**' ]
  workflow_dispatch:
    branches: [ '**' ]

jobs:
  full_ci:
    strategy:
      matrix:
        go_version: [ 1.18.x ]

    runs-on: ubuntu-20.04

    steps:
      - name: checkout
        uses: actions/checkout@v2

      - name: Set up Go
        uses: actions/setup-go@v3
        with:
          go-version: ${{ matrix.go_version }}
        
      - name: run tests
        run: go test -json ./... > test.json

      - name: Annotate tests
        if: always()
        uses: guyarb/[email protected]
        with:
          test-results: test.json
          package-name: foobar # optional, if using custom package name, github.com/owner/repo stripped from the pathname by default

Development of this action

  1. Fork this repo.
  2. Create a branch with your feature/bugfix.
  3. Open a PR to me.

Issues

Please open issues for any bug or suggestion you have.