Skip to content

Bump selenium-webdriver from 4.38.0 to 4.39.0 in the dependencies group #369

Bump selenium-webdriver from 4.38.0 to 4.39.0 in the dependencies group

Bump selenium-webdriver from 4.38.0 to 4.39.0 in the dependencies group #369

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Start Solr
run: docker compose up -d solr
- name: Wait for Solr to be healthy
run: |
timeout 120s bash -c \
'until docker ps --filter "name=solr" --format "{{.Status}}" | grep -q "healthy"; do \
echo "Waiting for Solr container to be healthy..."; \
sleep 5; \
done'
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Run tests
env:
RAILS_ENV: test
run: bin/rake db:setup blacklight:index:seed spec