Skip to content

readme: update domain notice (sigh freenom...) #147

readme: update domain notice (sigh freenom...)

readme: update domain notice (sigh freenom...) #147

Workflow file for this run

name: Quality
on: [push, pull_request]
jobs:
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.15'
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
go mod download
- name: Run Unit tests
run: |
go test -race -covermode atomic -coverprofile=covprofile ./...
- name: Install goveralls
env:
GO111MODULE: off
run: go get github.com/mattn/goveralls
#- name: Send coverage
# env:
# COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: goveralls -coverprofile=covprofile -service=github
# or use shogo82148/actions-goveralls
- name: Send coverage
uses: shogo82148/[email protected]
with:
path-to-profile: covprofile