Use Rails encypted secrets #310
Merged
Travis CI / Travis CI - Pull Request
succeeded
Sep 8, 2023 in 2m 39s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #310 Use Rails encypted secrets.
Any changes that have been made to the main branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Ruby |
Operating System | Linux (Focal) |
Build Configuration
{
"language": "ruby",
"os": [
"linux"
],
"dist": "focal",
"cache": {
"bundler": true,
"directories": [
"$HOME/.cache/yarn"
]
},
"services": [
"mysql"
],
"addons": {
"chrome": "stable"
},
"env": [
"global={:CC_TEST_REPORTER_ID=>\"029db8a4d83b74b2b01b09670c9a28a9c353175415b61186e87a1d70fe461931\"}"
],
"before_install": [
"nvm install 'lts/*'",
"nvm use 'lts/*'",
"npm i -g yarn",
"gem install bundler"
],
"install": [
"bundle config set --local deployment 'true'",
"bundle install --jobs=3 --retry=3",
"yarn"
],
"before_script": [
"cp config/database.yml.example config/database.yml",
"bundle exec rake db:create",
"curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter",
"chmod +x ./cc-test-reporter",
"./cc-test-reporter before-build"
],
"script": [
"bundle exec rspec"
],
"after_script": [
"./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
],
"branches": {
"only": [
"main"
]
},
"notifications": {
"email": [
{
"on_success": "never",
"on_failure": "change",
"recipients": [
"[email protected]"
]
}
]
}
}
Loading