Skip to content

Commit

Permalink
Ensures that CircleCI executes nightly test suites (#63)
Browse files Browse the repository at this point in the history
* Adding nightly CircleCI test suite executions

* Updating the bundler
  • Loading branch information
jrgriffiniii authored Apr 5, 2022
1 parent bed99b8 commit 0cafb72
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
type: string
bundler_version:
type: string
default: 1.17.3
default: 2.3.10
rails_version:
type: string
executor:
Expand Down Expand Up @@ -77,3 +77,45 @@ workflows:
name: ruby2-6_rails5-2
ruby_version: 2.6.5
rails_version: 5.2.7

nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- main
jobs:
- test:
name: ruby3-0_rails7
ruby_version: 3.0.3
rails_version: 7.0.2.3
- test:
name: ruby3-0_rails6-1
ruby_version: 3.0.3
rails_version: 6.1.5
- test:
name: ruby3-0_rails6-0
ruby_version: 3.0.3
rails_version: 6.0.4.7
- test:
name: ruby2-7_rails6-1
ruby_version: 2.7.5
rails_version: 6.1.5
- test:
name: ruby2-7_rails6-0
ruby_version: 2.7.5
rails_version: 6.0.4.7
- test:
name: ruby2-6_rails6-0
ruby_version: 2.6.9
rails_version: 6.0.4.7
- test:
name: ruby2-7_rails5-2
ruby_version: 2.7.5
rails_version: 5.2.7
- test:
name: ruby2-6_rails5-2
ruby_version: 2.6.5
rails_version: 5.2.7

0 comments on commit 0cafb72

Please sign in to comment.