Skip to content

Properly close inherited servers on fork #356

Properly close inherited servers on fork

Properly close inherited servers on fork #356

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7
- 3.0
- 3.1
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Test on ${{ matrix.ruby }}
run: |
bundle exec rake
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby 3.1
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Build
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Lint
run: |
bundle exec rubocop