Skip to content

Update tutorials

Update tutorials #62

Workflow file for this run

name: rundoc-ci-test
on:
pull_request:
branches:
- main
jobs:
test-rundoc:
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: .rundoc-workspace/Gemfile
strategy:
matrix:
lang: ["ruby", "dotnet", "nodejs", "python", "php", "go", "java_maven", "java_gradle", "scala"]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true # do run 'bundle install' and cache
- uses: buildpacks/github-actions/[email protected]
# [CONFIG] add different languages set up here
- run: |
bundle exec rundoc docs/src/${{ matrix.lang }}/RUNDOC.md \
--on-success-dir docs/${{ matrix.lang }} \
--on-failure-dir docs/fail/${{ matrix.lang }} \
--force