-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Move the documentation check to a separate job
- Loading branch information
Showing
2 changed files
with
67 additions
and
38 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: "CI - Documentation Check" | ||
|
||
on: | ||
push: | ||
paths: | ||
# NOTE: GitHub Actions do not allow using YAML references, the same path | ||
# list is used below for the pull request event. Keep both lists in sync!! | ||
|
||
# this file as well | ||
- .github/workflows/ci-yardoc.yml | ||
# all Ruby files | ||
- service/Gemfile* | ||
- service/*.gemspec | ||
- service/**.rb | ||
# the D-Bus introspection files | ||
- doc/dbus/**.xml | ||
|
||
pull_request: | ||
paths: | ||
# NOTE: GitHub Actions do not allow using YAML references, the same path | ||
# list is used above for the push event. Keep both lists in sync!! | ||
|
||
# this file as well | ||
- .github/workflows/ci-yardoc.yml | ||
# all Ruby files | ||
- service/Gemfile* | ||
- service/*.gemspec | ||
- service/**.rb | ||
# the D-Bus introspection files | ||
- doc/dbus/**.xml | ||
|
||
jobs: | ||
ruby_doc: | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
working-directory: ./service | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
distro: [ "tumbleweed" ] | ||
|
||
container: | ||
image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby | ||
|
||
steps: | ||
|
||
- name: Configure and refresh repositories | ||
# disable unused repositories to have faster refresh | ||
run: zypper modifyrepo -d repo-non-oss repo-openh264 repo-update && zypper ref | ||
|
||
- name: Install Ruby development files and XML tooling | ||
run: zypper --non-interactive install git gcc gcc-c++ make openssl-devel ruby-devel augeas-devel xmlstarlet | ||
|
||
- name: Git Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install RubyGems dependencies | ||
run: bundle config set --local with 'development' && bundle install && bundle info yardoc | ||
|
||
- name: Generate doc | ||
run: bundle exec yardoc --fail-on-warning | ||
|
||
- name: Check that introspected API and its docs have not diverged | ||
run: make -C ../doc check |
This file contains 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