Skip to content

Merge pull request #30 from hebron-george/dependabot/bundler/rake-13.4.2 #108

Merge pull request #30 from hebron-george/dependabot/bundler/rake-13.4.2

Merge pull request #30 from hebron-george/dependabot/bundler/rake-13.4.2 #108

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
lint:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop
test:
name: RSpec (Ruby ${{ matrix.ruby }})
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec