Skip to content

Use .b instead of force_encoding(Encoding::ASCII_8BIT) #213

Use .b instead of force_encoding(Encoding::ASCII_8BIT)

Use .b instead of force_encoding(Encoding::ASCII_8BIT) #213

Workflow file for this run

name: macos
on: [push]
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
ruby: [ head, 3.3 ]
timeout-minutes: 10
env:
RUBYOPT: --enable-frozen-string-literal --debug-frozen-string-literal
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle install
- name: Run test
run: bundle exec rake test