Skip to content

fixup! Use GitHub action for yard #7

fixup! Use GitHub action for yard

fixup! Use GitHub action for yard #7

Workflow file for this run

name: yard
on: push
permissions:
id-token: write
contents: write
pages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec yard doc
- uses: actions/upload-pages-artifact@v3
with:
path: doc/
- uses: actions/deploy-pages@v4