Try adding docs
This commit is contained in:
parent
15c0a1ccc0
commit
04e1d9eb91
10 changed files with 144 additions and 74 deletions
27
.forgejo/workflows/main.yml
Normal file
27
.forgejo/workflows/main.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Ruby
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
name: Ruby ${{ matrix.ruby }}
|
||||
strategy:
|
||||
matrix:
|
||||
ruby:
|
||||
- "3.3.5"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
bundler-cache: true
|
||||
- name: Run the default task
|
||||
run: bundle exec rake
|
Loading…
Add table
Add a link
Reference in a new issue