Skip to content

Merge pull request #4 from 3ncr/dependabot/github_actions/actions/che… #10

Merge pull request #4 from 3ncr/dependabot/github_actions/actions/che…

Merge pull request #4 from 3ncr/dependabot/github_actions/actions/che… #10

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
ruby-version: ["3.1", "3.2", "3.3", "3.4", "4.0"]
name: Ruby ${{ matrix.ruby-version }}
steps:
- uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test