Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: "CI Tests"

on:
push:
branches: "main"
branches:
- main
pull_request:
branches: "*"

Expand All @@ -13,14 +14,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.3"]
rails: ["7.0", "7.1", "7.2"]
ruby: ["3.3", "3.4", "4.0"]
rails: ["7.2", "8.0", "8.1"]
include:
- ruby: "3.3"
rails: "8.0"
- ruby: "3.4"
rails: "8.0"
- ruby: "3.4"
- ruby: "4.0"
rails: "main"

env:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ end

gem "rails", rails_constraint
gem "high_voltage", "~> 3.0.0"
gem "webdrivers", "~> 5.0"
gem "selenium-webdriver", ">= 4.11"
gem "webrick"
3 changes: 0 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ require "bundler/setup"
require "bundler/gem_tasks"
require "rspec/core/rake_task"

require "webdrivers"
load "webdrivers/Rakefile"

task(:default).clear
task default: :spec

Expand Down
2 changes: 0 additions & 2 deletions bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ echo '-- Set up Ruby dependencies via Bundler'
gem install bundler --conservative
bundle check || bundle install

bin/rake webdrivers:chromedriver:update

# Add binstubs to PATH via export PATH=".git/safe/../../bin:$PATH" in ~/.zshenv
mkdir -p .git/safe

Expand Down