Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

fix: update homebrew install documentation for clarity #13

fix: update homebrew install documentation for clarity

fix: update homebrew install documentation for clarity #13

Workflow file for this run

name: reviewdog
on: [pull_request]
jobs:
reviewdog:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
- name: Test
run: |
go test -race ./... -coverprofile cover.out
- name: Coverage
run: |
go tool cover -func cover.out