Skip to content

Commit

Permalink
Ensure CircleCI configuration is up-to-date
Browse files Browse the repository at this point in the history
This change:

- Ensures that browser tools for running feature tests are explicitly
  available.
- Ensures that all required executors use Ruby 3. (Ruby 2 is now EOL.)
  • Loading branch information
benjaminwil committed Jun 4, 2024
1 parent 6f9849c commit 2f38dcd
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: 2.1

orbs:
# Browser tools are required for feature specs.
browser-tools: circleci/[email protected]

# Always take the latest version of the orb, this allows us to
# run specs against Solidus supported versions only without the need
# to change this configuration every time a Solidus version is released
Expand All @@ -9,11 +12,15 @@ orbs:

jobs:
run-specs-with-postgres:
executor: solidusio_extensions/postgres
executor:
name: solidusio_extensions/postgres
ruby_version: "3.0"
steps:
- solidusio_extensions/run-tests
run-specs-with-mysql:
executor: solidusio_extensions/mysql
executor:
name: solidusio_extensions/mysql
ruby_version: "3.0"
steps:
- solidusio_extensions/run-tests

Expand Down

0 comments on commit 2f38dcd

Please sign in to comment.