Bump actionpack from 7.2.1 to 7.2.1.1 #240
Workflow file for this run
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: test | |
'on': | |
- push | |
- pull_request | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: code | |
uses: actions/checkout@v3 | |
- name: ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
rubygems: latest | |
bundler: latest | |
bundler-cache: true | |
- name: db | |
run: bundle exec rake db:create db:migrate --trace | |
- name: results | |
run: bundle exec rake test |