Skip to content

build(deps): update mocha requirement from ~> 2.8.2 to ~> 3.0.1 #453

build(deps): update mocha requirement from ~> 2.8.2 to ~> 3.0.1

build(deps): update mocha requirement from ~> 2.8.2 to ~> 3.0.1 #453

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
ruby-version:
- "3.2"
- "3.3"
- "3.4"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- 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