Skip to content

MB-59863: Vector validation, compliant to [email protected] #37

MB-59863: Vector validation, compliant to [email protected]

MB-59863: Vector validation, compliant to [email protected] #37

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Coverage
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: '1.20.x'
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: |
go test -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov