Skip to content

Commit 1f6d92f

Browse files
committed
Add documentation coverage.
1 parent 77db065 commit 1f6d92f

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Documentation Coverage
2+
3+
on: [push, pull_request]
4+
5+
permissions:
6+
contents: read
7+
8+
env:
9+
CONSOLE_OUTPUT: XTerm
10+
COVERAGE: PartialSummary
11+
12+
jobs:
13+
validate:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: "3.3"
21+
bundler-cache: true
22+
23+
- name: Validate coverage
24+
timeout-minutes: 5
25+
run: bundle exec bake decode:index:coverage lib

.github/workflows/coverage.yaml renamed to .github/workflows/test-coverage.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Coverage
1+
name: Test Coverage
22

33
on: [push, pull_request]
44

gems.rb

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
group :test do
1919
gem "covered"
2020
gem "sus"
21+
gem "decode"
2122

2223
gem "bake-test"
2324
gem "bake-test-external"

0 commit comments

Comments
 (0)