docs: add long descriptions for skip-rewritten, sync, and trust commands #1814
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |