mirror of https://github.com/ioquatix/ffi-clang
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
450 B
YAML
26 lines
450 B
YAML
name: Documentation Coverage
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
CONSOLE_OUTPUT: XTerm
|
|
COVERAGE: PartialSummary
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: "3.4"
|
|
bundler-cache: true
|
|
|
|
- name: Validate coverage
|
|
timeout-minutes: 5
|
|
run: bundle exec bake decode:index:coverage lib
|