Skip to content

Fix SystemStackError error from Folder.contents() #56

Fix SystemStackError error from Folder.contents()

Fix SystemStackError error from Folder.contents() #56

Workflow file for this run

# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake