Skip to content

Update mocha requirement from ~> 2.1.0 to ~> 2.2.0 (#292) #198

Update mocha requirement from ~> 2.1.0 to ~> 2.2.0 (#292)

Update mocha requirement from ~> 2.1.0 to ~> 2.2.0 (#292) #198

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
ruby-version:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Rubocop
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake test