这是indexloc提供的服务,不要输入任何密码
Skip to content

docs: add long descriptions for skip-rewritten, sync, and trust commands #1814

docs: add long descriptions for skip-rewritten, sync, and trust commands

docs: add long descriptions for skip-rewritten, sync, and trust commands #1814

Workflow file for this run

name: coverage
on:
push:
branches: ['main']
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "docs/**"
- "**.md"
permissions: read-all
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
with:
go-version: 1.24
cache: true
- name: Check Coverage
run: |
go test -covermode=atomic -coverprofile='unfiltered_coverage.cov' `go list ./... | grep -v -f .test_ignore.txt`
grep -v -f .test_ignore.txt unfiltered_coverage.cov > coverage.cov
- name: Coveralls Parallel
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
with:
file: 'coverage.cov'