Skip to content

Fix regression: Allow DomainName.normalize to accept ASCII-only, non-unicode encoded input #4

Fix regression: Allow DomainName.normalize to accept ASCII-only, non-unicode encoded input

Fix regression: Allow DomainName.normalize to accept ASCII-only, non-unicode encoded input #4

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: [2.7, "3.0", 3.1, 3.2, head, jruby]
name: >-
${{matrix.os}}:ruby-${{matrix.ruby}}
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.ruby == 'head' || matrix.ruby == 'jruby'}}
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up ruby and bundle
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run rake
run: |
bundle exec rake