Skip to content

Merge pull request #7 from bastelfreak/vp #40

Merge pull request #7 from bastelfreak/vp

Merge pull request #7 from bastelfreak/vp #40

Workflow file for this run

name: Ruby
on:
pull_request: {}
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 3.4
- 3.3
- 3.2
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec spec --color --format documentation --order random
- name: Rubocop
run: bundle exec rake rubocop