Skip to content

Bump rake from 13.0.6 to 13.4.2 #3694

Bump rake from 13.0.6 to 13.4.2

Bump rake from 13.0.6 to 13.4.2 #3694

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / ${{ matrix.gemfile }}
strategy:
fail-fast: false
matrix:
gemfile:
- Gemfile
ruby: ["3.2", "3.3", "3.4"]
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: RuboCop
run: bin/style
- name: Tests
run: bin/test
- name: CLDR Rake Tasks Integration Test
run: bin/test-cldr-rake-tasks