Version bump to 1.2.3 #5
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.3 | |
- name: Getting dependencies (Bundle) | |
run: | | |
gem install bundler -v 2.5.9 | |
bundle install | |
- name: Running test Rspec | |
run: | | |
bundle exec rake | |
- name: Running CVE security audit | |
run: | | |
bundle exec rake audit |