Skip to content

Merge pull request #27 from saka1/fix-utf8-encoding #20

Merge pull request #27 from saka1/fix-utf8-encoding

Merge pull request #27 from saka1/fix-utf8-encoding #20

Workflow file for this run

name: Ruby
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.2', '3.3', '3.4', '4.0' ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build
run: bundle exec rake
- name: Run tests
run: bundle exec rake test
- name: Run rubocop
run: bundle exec rubocop --fail-level=W