Skip to content

chore(deps): bump nokogiri from 1.19.3 to 1.19.4 in /spec/rails7_stub #370

chore(deps): bump nokogiri from 1.19.3 to 1.19.4 in /spec/rails7_stub

chore(deps): bump nokogiri from 1.19.3 to 1.19.4 in /spec/rails7_stub #370

Workflow file for this run

name: CI
on:
push:
branches:
- master
- '*-dev'
- '*-feature'
- '*-fix'
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 21, 25]
ruby-version: [jruby-9.4, jruby-10.0, jruby-10.1]
task: ['', integration]
exclude:
- ruby-version: jruby-10.0 # JRuby 10 requires Java 21 minimum
java-version: 8
- ruby-version: jruby-10.1 # JRuby 10 requires Java 21 minimum
java-version: 8
fail-fast: false
env:
# speed up all those subprocesses
JRUBY_OPTS: --dev
steps:
- name: checkout
uses: actions/checkout@v7
- name: Set up java ${{ matrix.java-version }}
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
cache: maven
- name: Set up ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Remove jruby-launcher # not sure where this is coming from but causes some specs to fail
run: gem uninstall -a jruby-launcher
- name: Install dependencies
run: BUNDLE_JOBS=1 bundle install
- name: Run tests
run: bundle exec rake ${{ matrix.task }}