Skip to content

Bumped the github.com/zoomio/inout to the latest commit hash (#27) #156

Bumped the github.com/zoomio/inout to the latest commit hash (#27)

Bumped the github.com/zoomio/inout to the latest commit hash (#27) #156

Workflow file for this run

name: Test
on:
push:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Cache Go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install
run: go get -t -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic