Skip to content

Bump version to 4.3.2 #96

Bump version to 4.3.2

Bump version to 4.3.2 #96

Workflow file for this run

name: Test Suite
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
on: [push, pull_request]
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
min_version: 2.7
test:
needs: ruby-versions
name: Test (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- { ruby: jruby }
- { ruby: jruby-head }
- { ruby: truffleruby }
- { ruby: truffleruby-head }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- name: Run tests & lint
run: bundle exec rake suite