Skip to content

Bump actions/checkout from 7.0.0 to 7.0.1 #128

Bump actions/checkout from 7.0.0 to 7.0.1

Bump actions/checkout from 7.0.0 to 7.0.1 #128

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@3d3c42e5aac5ba805825da76410c181273ba90b1
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@003a5c4d8d6321bd302e38f6f0ec593f77f06600
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