-
Notifications
You must be signed in to change notification settings - Fork 496
56 lines (50 loc) · 1.06 KB
/
unit_tests.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CI: true
jobs:
linux_unit_tests:
name: Ruby version
strategy:
matrix:
ruby:
- '2.5'
- '2.7'
- '3.0'
- '3.2'
- 'jruby-9.3.14.0'
- 'jruby-9.4.8.0'
runs-on: ubuntu-20.04
steps:
- name: Checkout current PR
uses: actions/checkout@v4
- name: Rspec checks
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec_random
windows_unit_tests:
name: Windows tests with Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7'
- '3.2'
runs-on: windows-2019
steps:
- name: Checkout current PR
uses: actions/checkout@v4
- name: Rspec checks
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec_random