Skip to content

More specific target version #59

More specific target version

More specific target version #59

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- edited
permissions:
contents: read
jobs:
test:
name: Rspec Test Action
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.3.5
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.5
- name: Bundle
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run Rspec
run: rspec