Skip to content

Rewrite example without Process.detach #26

Rewrite example without Process.detach

Rewrite example without Process.detach #26

Workflow file for this run

name: xchan.rb
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
specs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [3.1, 3.2, 3.3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: SERIALIZER=marshal bundle exec rake
- run: SERIALIZER=json bundle exec rake
- run: SERIALIZER=yaml bundle exec rake
- run: SERIALIZER=pure bundle exec rake