-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (43 loc) · 1.11 KB
/
ci.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
on: [push]
name: Unit test
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.1' ]
os:
- windows-latest
- ubuntu-latest
- macos-latest
name: Test on ${{ matrix.os }} with Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake test
build:
runs-on: [ windows-latest ]
name: Build and upload
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- name: Install dependencies
run: bundle install
- name: Build for distribution
run: bundle exec gem build
- name: Upload gem
uses: actions/upload-artifact@v2
with:
name: fluent-plugin-sigdump
path: |
*.gem