Skip to content

Update BLZ data + add Ruby 3.4 support (#254) #88

Update BLZ data + add Ruby 3.4 support (#254)

Update BLZ data + add Ruby 3.4 support (#254) #88

Workflow file for this run

name: tests
on:
push:
jobs:
validate:
strategy:
matrix:
ruby-version: ["3.1", "3.2", "3.3", "3.4"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "${{ matrix.ruby-version }}"
- name: Run tests
run: bundle exec rspec
- name: Run rubocop
run: bundle exec rubocop --parallel --extra-details --display-style-guide