Skip to content

Bump addressable from 2.7.0 to 2.9.0 #33

Bump addressable from 2.7.0 to 2.9.0

Bump addressable from 2.7.0 to 2.9.0 #33

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0']
env:
PUSHER_INSTANCE_ID: 1b880590-6301-4bb5-b34f-45db1c5f5644
PUSHER_SECRET_KEY: abc
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
- name: Run rubocop
run: bundle exec rubocop