-
-
Notifications
You must be signed in to change notification settings - Fork 50
42 lines (38 loc) · 914 Bytes
/
test-ruby.yml
File metadata and controls
42 lines (38 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Test cucumber-core
permissions: {}
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
schedule:
- cron: "0 5 * * *"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.2', '3.3', '3.4', '3.5']
include:
- os: ubuntu-latest
ruby: jruby
- os: macos-latest
ruby: '3.4'
- os: windows-latest
ruby: '3.4'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
shell: bash