phlexite/.forgejo/workflows/main.yml
Aleks Rutins 04e1d9eb91
Some checks failed
/ build (push) Successful in 1m33s
Ruby / Ruby 3.3.5 (push) Failing after 14s
Try adding docs
2025-06-10 18:11:38 -04:00

27 lines
457 B
YAML

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