Skip to content

add exit thanking message (#102) #218

add exit thanking message (#102)

add exit thanking message (#102) #218

Workflow file for this run

name: coverage
on:
push:
paths:
- 'go.mod'
- 'go.sum'
- 'internal/**'
- 'cmd/**'
pull_request:
paths:
- 'go.mod'
- 'go.sum'
- 'internal/**'
- 'cmd/**'
workflow_dispatch:
jobs:
coverage:
strategy:
matrix:
go-version: [1.26.4]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Run tests with coverage
run: go test -race -covermode atomic -coverprofile=profile.cov ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=profile.cov -service=github