Skip to content

Make the library fork safe and drop the mutex #39

Make the library fork safe and drop the mutex

Make the library fork safe and drop the mutex #39

Workflow file for this run

name: Mini Mime Tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: "Ruby ${{ matrix.ruby }} / Failure allowed: ${{ matrix.experimental }}"
continue-on-error: ${{ matrix.experimental }}
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"]
experimental: [false]
include:
- ruby: "ruby-head"
experimental: true
- ruby: "truffleruby-head"
experimental: true
- ruby: "jruby-head"
experimental: true
- ruby: "jruby-9.3.9.0"
experimental: true
- ruby: "jruby-9.4.0.0"
experimental: true
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Rubocop
run: bundle exec rubocop
if: "!contains(matrix.ruby, 'jruby')"
- name: Tests
run: bundle exec rake test