Skip to content

Style fix

Style fix #323

Workflow file for this run

---
name: Deploy API docs to GitHub Pages
on:
push:
branches: ["i1225-fix-again", "main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
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