Add update item collection request #79
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: Ruby | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
- name: Run specs and rubocop | |
run: | | |
gem install bundler -v 2.2.15 | |
bundle install | |
bundle exec rake | |
- name: Run bundler-audit | |
run: | | |
gem install bundler -v 2.2.15 | |
bundle install | |
bundle exec bundler-audit |