-
Notifications
You must be signed in to change notification settings - Fork 205
46 lines (43 loc) · 1.28 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
44
45
46
name: test
on: [push, pull_request]
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
engine: cruby-jruby
min_version: 2.5
test:
needs: ruby-versions
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest, macos-latest, windows-latest ]
include:
- { os: windows-latest, ruby: ucrt }
- { os: windows-latest, ruby: mingw }
- { os: windows-latest, ruby: mswin }
- { os: macos-13, ruby: 2.5 }
exclude:
# CRuby < 2.6 does not support macos-arm64
- { os: macos-latest, ruby: 2.5 }
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby-pkgs@v1
with:
ruby-version: ${{ matrix.ruby }}
apt-get: "haveged libyaml-dev"
brew: libyaml
vcpkg: libyaml
- name: Set JRuby ENV vars
run: |
echo 'JAVA_OPTS=-Xmx1g' >> $GITHUB_ENV
if: ${{ ! startsWith(matrix.ruby, 'jruby') }}
- name: Install dependencies
run: bundle install --jobs 1
- name: Run test
run: rake
- name: Install gem
run: rake install