Skip to content

Implement the CMW collection #27

Implement the CMW collection

Implement the CMW collection #27

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