Skip to content

Bring implementation in line with I-D v11 #61

Bring implementation in line with I-D v11

Bring implementation in line with I-D v11 #61

Workflow file for this run

name: cover ≥88%
on: [push, pull_request]
jobs:
cover:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: "1.19"
- name: Checkout code
uses: actions/checkout@v2
- name: Go Coverage
run: |
go version
go test -short -cover | grep -o "coverage:.*of statements$" | python scripts/cov.py
shell: bash