Skip to content

Bump addressable from 2.8.6 to 2.9.0 #582

Bump addressable from 2.8.6 to 2.9.0

Bump addressable from 2.8.6 to 2.9.0 #582

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request: {}
defaults:
run:
shell: bash
jobs:
test:
name: Test Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.1'
- '3.2'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@675dd7ba1b06c8786a1480d89c384f5620a42647 # v1.281.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Rubocop
run: |
bundle exec rubocop
- name: Spec
run: |
bundle exec rspec