Bump selenium-webdriver from 4.27.0 to 4.28.0 #1494
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: RunSpecs | |
on: push | |
env: | |
RAILS_ENV: test | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
db: | |
image: postgres | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
- name: Install Bundler dependencies | |
run: bundle install | |
- name: Setup database | |
run: bundle exec rails db:setup | |
env: | |
BEERKEEPER_DATABASE_HOST: localhost | |
- name: Run tests | |
run: bundle exec rspec | |
env: | |
BEERKEEPER_DATABASE_HOST: localhost |