Skip to content

Bump ruby/setup-ruby from 1.156.0 to 1.157.0 #2509

Bump ruby/setup-ruby from 1.156.0 to 1.157.0

Bump ruby/setup-ruby from 1.156.0 to 1.157.0 #2509

Workflow file for this run

name: ci
on: [push, pull_request]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ["3.2"]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Dump environment
run: env | sort
- name: Checkout ruby/www.ruby-lang.org
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
fetch-depth: 1
- name: Setup Ruby
uses: ruby/setup-ruby@a05e47355e80e57b9a67566a813648fa67d92011 # v1.157.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Dump Ruby version
run: ruby -v
- name: Run tests
run: bundle exec rake test