Merge pull request #185 from cedarcode/dependabot/bundler/kamal-2.3.0 #159
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
name: Ruby | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run tests | |
env: | |
RAILS_ENV: test | |
run: | | |
bundle exec rake db:create db:schema:load | |
bundle exec rake | |
TEST_BROWSER=headless_chrome bundle exec rake test:system |