Skip to content

Removed cli because not maintained anymore (#75) #133

Removed cli because not maintained anymore (#75)

Removed cli because not maintained anymore (#75) #133

Workflow file for this run

name: go test
on:
push:
tags:
- "*"
branches:
- "*"
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up
uses: actions/setup-go@v2
with:
go-version: "1.20"
- name: Cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: go test -v ./... -coverprofile=coverage.out -covermode=atomic