Skip to content

Merge pull request #5 from ydah/dependabot/github_actions/actions/che… #40

Merge pull request #5 from ydah/dependabot/github_actions/actions/che…

Merge pull request #5 from ydah/dependabot/github_actions/actions/che… #40

Workflow file for this run

name: Main CI
on:
push:
branches:
- main
pull_request:
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
engine: cruby
min_version: 2.5
test:
needs: ruby-versions
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec