File tree Expand file tree Collapse file tree 3 files changed +47
-39
lines changed
Expand file tree Collapse file tree 3 files changed +47
-39
lines changed Original file line number Diff line number Diff line change 1+ steps :
2+ - label : " :ruby: Ruby {{matrix.ruby}}"
3+ image : " ruby:{{matrix.ruby}}"
4+ commands :
5+ - bundle install
6+ - bundle exec rake
7+ matrix :
8+ setup :
9+ ruby :
10+ - " 3.3"
11+ - " 3.4"
12+
13+ - label : " :ruby: Ruby head"
14+ image : " rubylang/ruby:master-dev"
15+ commands :
16+ - apt-get update && apt-get install -y libyaml-dev
17+ - bundle install
18+ - bundle exec rake
Original file line number Diff line number Diff line change 1+ name : YARD Docs
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ permissions :
12+ contents : write
13+ steps :
14+ - uses : actions/checkout@v4
15+
16+ - name : Set up Ruby
17+ uses : ruby/setup-ruby@v1
18+ with :
19+ ruby-version : head
20+ bundler-cache : true
21+
22+ - name : Generate YARD docs
23+ run : bundle exec yard doc --no-private
24+
25+ - name : Deploy to GitHub Pages
26+ uses : peaceiris/actions-gh-pages@v4
27+ with :
28+ github_token : ${{ secrets.GITHUB_TOKEN }}
29+ publish_dir : doc
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments