Skip to content

hehe

hehe #100

Workflow file for this run

# # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
# name: Ruby 3.1
# on:
# push:
# branches: [ main, dev ]
# pull_request:
# branches: [ main, dev ]
# jobs:
# test:
# runs-on: ubuntu-latest
# env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
# BUNDLE_GEMFILE: ${{ github.workspace }}/ruby_3_1.gemfile
# steps:
# - uses: actions/checkout@v4
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: '3.1' # Not needed with a .ruby-version file
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically
# - name: Install Appraisal Gems
# run: bundle exec rake install
# - name: Run tests
# run: bundle exec rake test_all