-
Notifications
You must be signed in to change notification settings - Fork 199
43 lines (41 loc) · 1.05 KB
/
test.yml
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
name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
CI: true
TRUFFLERUBYOPT: "--engine.Mode=latency"
strategy:
fail-fast: false
matrix:
ruby: ["3.0.6", "3.1.4", "3.2.2", "3.3.0", "jruby-9.2"]
test_command: ["bundle exec rake test"]
include:
- ruby: "head"
test_command: "bundle exec rake test || true"
- ruby: "truffleruby"
test_command: "bundle exec rake test || true"
- ruby: "3.2.2"
test_command: "./ci/run_rubocop_specs || true"
- ruby: "3.3.0"
test_command: "./ci/run_rubocop_specs || true"
steps:
- uses: actions/checkout@v3
- name: Install Ragel
run: |
sudo apt-get update
sudo apt-get install ragel
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: |
${{ matrix.test_command }}