Skip to content

Bump buildpacks/github-actions from 5.9.3 to 5.9.4 in the github-actions group #105

Bump buildpacks/github-actions from 5.9.3 to 5.9.4 in the github-actions group

Bump buildpacks/github-actions from 5.9.3 to 5.9.4 in the github-actions group #105

Workflow file for this run

name: rundoc-ci-test
on:
pull_request:
branches:
- main
paths:
- ".github/**"
- ".rundoc-workspace/**"
- "docs/src/**"
permissions:
contents: read
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@v5
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/setup-pack@f6d0ae15b2e1f021664bf3ee3fc4f9105c1ee4c7 # v5.9.4
# [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