1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: run tests
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
CI: true
TRUFFLERUBYOPT: "--engine.Mode=latency"
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
- jruby-9.4
command: ["bundle exec rake spec"]
include:
- ruby: "head"
command: "bundle exec rake spec || true"
- ruby: "truffleruby"
command: "bundle exec rake spec || true"
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: bundle install
run: bundle install
- name: run tests
run: ${{ matrix.command }}
|