Skip to content

Merge pull request #6 from elri/wip #17

Merge pull request #6 from elri/wip

Merge pull request #6 from elri/wip #17

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile=coverage.txt ./...
- name: actions-goveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.txt
- name: Go report card
uses: creekorful/goreportcard-action@v1.0