Skip to content

Bump minitest from 5.17.0 to 5.23.0 #47

Bump minitest from 5.17.0 to 5.23.0

Bump minitest from 5.17.0 to 5.23.0 #47

Workflow file for this run

name: CI
on:
push:
branches:
- $default-branch
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
tests:
name: Ruby ${{ matrix.ruby }} tests
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.6
- 2.7
- 3.0
- 3.1
- 3.2
steps:
- uses: actions/checkout@v3
- name: Setup git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Test"
git config --global init.defaultBranch master
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rubocop