Skip to content

Test cucumber-core #805

Test cucumber-core

Test cucumber-core #805

Workflow file for this run

name: Test cucumber-core
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
workflow_call:
schedule:
- cron: "0 5 * * *"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.0', '3.1', '3.2', '3.3']
include:
- os: ubuntu-latest
ruby: jruby
- os: macos-latest
ruby: '3.3'
- os: windows-latest
ruby: '3.3'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
shell: bash