Skip to content

Refactor 'Warning' logging methods to 'Warn' and improve code efficiency #42

Refactor 'Warning' logging methods to 'Warn' and improve code efficiency

Refactor 'Warning' logging methods to 'Warn' and improve code efficiency #42

Workflow file for this run

#file: noinspection SpellCheckingInspection
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Display Go version
run: go version
- name: Install dependencies
run: |
go mod download
- name: Run Unit tests
run: |
go test -race -covermode atomic -coverprofile=covprofile ./logger/...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github