-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (39 loc) · 1.13 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
name: test
on: [push, pull_request]
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
min_version: 2.5
test:
needs: ruby-versions
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-24.04, macos-latest, windows-latest ]
exclude:
- { os: macos-latest, ruby: 2.5 }
- { os: windows-latest, ruby: truffleruby-head }
- { os: windows-latest, ruby: truffleruby }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rake test
- name: Build gem
run: rake build
- uses: actions/upload-artifact@v4
if: >-
startsWith(matrix.os, 'ubuntu') &&
matrix.ruby == needs.ruby-versions.outputs.latest
with:
name: gem-${{ matrix.os }}-${{ matrix.ruby }}
path: pkg/
id: upload