Skip to content

Bump ruby/setup-ruby from 1.186.0 to 1.187.0 #1404

Bump ruby/setup-ruby from 1.186.0 to 1.187.0

Bump ruby/setup-ruby from 1.186.0 to 1.187.0 #1404

Workflow file for this run

name: Exercise tests
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Ruby ${{ matrix.ruby-version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
ruby-version: [3.2, 3.3]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Set up Ruby
uses: ruby/setup-ruby@161cd54b698f1fb3ea539faab2e036d409550e3c
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Lint
run: bundle exec rubocop -fs --except Metrics --config .rubocop.yml
- name: Test exercises
run: bundle exec rake test