Skip to content

Bump minimatch from 3.1.2 to 3.1.5 (#1822) #1740

Bump minimatch from 3.1.2 to 3.1.5 (#1822)

Bump minimatch from 3.1.2 to 3.1.5 (#1822) #1740

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-24.04
ruby-version: [3.2, 3.3]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Set up Ruby
uses: ruby/setup-ruby@8d27f39a5e7ad39aebbcbd1324f7af020229645c
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