Skip to content

Merge pull request #74 from github/actions-updates #123

Merge pull request #74 from github/actions-updates

Merge pull request #74 from github/actions-updates #123

Workflow file for this run

name: Ruby
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.1', '3.2', '3.3', '3.4', '4.0' ]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@d45b1a4e94b71acab930e56e79c6aa188764e7f9
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test
run: |
bundle install --jobs 4 --retry 3
find ./spec/fixtures -type f -exec chmod 600 -- {} +
bundle exec rspec