Skip to content

Translate Ruby 3.3.0-preview2 released news post (id) #2487

Translate Ruby 3.3.0-preview2 released news post (id)

Translate Ruby 3.3.0-preview2 released news post (id) #2487

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@52b8784594ec115fd17094752708121dc5dabb47 # v1.154.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Dump Ruby version
run: ruby -v
- name: Run tests
run: bundle exec rake test