Skip to content

Update language on supported browsers #21

Update language on supported browsers

Update language on supported browsers #21

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ruby: [
3.1,
3.2,
3.3,
head,
truffleruby,
truffleruby-head
]
# gemfile: [ rack3 ]
runs-on: ${{ matrix.os }}
# env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
# BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake