Bump ruby/setup-ruby from 1.190.0 to 1.192.0 #160
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: Build + Test | |
on: [pull_request, push] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build + Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@a6b46b8a08edb18935835849f2a17072d5cc8c73 #v1.190.0 tag | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Build and test with Rake | |
run: | | |
bundle exec rubocop | |
bundle exec rspec spec |