This repository was archived by the owner on Oct 1, 2025. It is now read-only.
chore(deps): Bump puma from 6.6.1 to 7.0.0 #824
Workflow file for this run
This file contains hidden or 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: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 # uses .ruby-version file | |
| with: | |
| bundler-cache: true | |
| - name: Run Linters | |
| run: bundle exec rubocop | |
| - name: Run Test Suite | |
| run: | | |
| bundle exec rake db:migrate | |
| bundle exec rake test | |
| env: | |
| RACK_ENV: test |